auto-bind.js 253 B

1234567891011
  1. "use strict";
  2. var d = require("../");
  3. module.exports = function (t, a) {
  4. var o = Object.defineProperties(
  5. {}, t({ bar: d(function () { return this === o; }), bar2: d(function () { return this; }) })
  6. );
  7. a.deep([o.bar(), o.bar2()], [true, o]);
  8. };