Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Mar 22, 2018
1 parent 20bfb78 commit f1be285
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/string/format-method.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
"use strict";

module.exports = function (t, a) {
t = t({ a: "A",
aa: "B",
ab: "C",
b: "D",
t = t({
a: "A",
aa: "B",
ab: "C",
b: "D",
c: function () {
return ++this.a;
} });
return ++this.a;
}
});
a(t.call({ a: 0 }, " %a%aab%abb%b\\%aa%ab%c%c "), " ABbCbD%aaC12 ");
};

0 comments on commit f1be285

Please sign in to comment.