with.js 340 B

123456789
  1. var isPrototypeOf = require('../../internals/object-is-prototype-of');
  2. var method = require('../array/virtual/with');
  3. var ArrayPrototype = Array.prototype;
  4. module.exports = function (it) {
  5. var own = it['with'];
  6. return (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype['with'])) ? method : own;
  7. };