index.js 212 B

12345678
  1. 'use strict';
  2. var hasOwnProperty = {}.hasOwnProperty;
  3. var call = Function.prototype.call;
  4. module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
  5. return call.call(hasOwnProperty, O, P);
  6. };