mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 11:08:35 +00:00
6 lines
206 B
JavaScript
Vendored
6 lines
206 B
JavaScript
Vendored
"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 ");
|
|
};
|