spread.js 171 B

12345678910
  1. "use strict";
  2. var f = function (a, b) {
  3. return this[a] + this[b];
  4. }
  5. , o = { a: 3, b: 4 };
  6. module.exports = function (t, a) {
  7. a(t.call(f).call(o, ["a", "b"]), 7);
  8. };