Sha256: 4a6c0cc1faec7e67674f568272d7bac59758713e1c3dbf1466468334a7149046
Contents?: true
Size: 346 Bytes
Versions: 4
Compression:
Stored size: 346 Bytes
Contents
'use strict'; var isPrototypeOf = require('../../internals/object-is-prototype-of'); var method = require('../array/virtual/push'); var ArrayPrototype = Array.prototype; module.exports = function (it) { var own = it.push; return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.push) ? method : own; };
Version data entries
4 entries across 4 versions & 1 rubygems