my-idlers/node_modules/es5-ext/test/string/format-method.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

7 lines
206 B
JavaScript

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