a zip code crypto-currency system good for red ONLY

format-method.js 222B

123456789101112131415
  1. "use strict";
  2. module.exports = function (t, a) {
  3. t = t({
  4. a: "A",
  5. aa: "B",
  6. ab: "C",
  7. b: "D",
  8. c: function () {
  9. return ++this.a;
  10. }
  11. });
  12. a(t.call({ a: 0 }, " %a%aab%abb%b\\%aa%ab%c%c "), " ABbCbD%aaC12 ");
  13. };