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