You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

auto-bind.js 253B

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. };