Sha256: 2a9d7601d140636370109198c5b40e71b20d960e1fe67b4c9da66b6bbb2f902c

Contents?: true

Size: 365 Bytes

Versions: 4

Compression:

Stored size: 365 Bytes

Contents

'use strict';
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/copy-within');

var ArrayPrototype = Array.prototype;

module.exports = function (it) {
  var own = it.copyWithin;
  return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.copyWithin) ? method : own;
};

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
decidim-0.26.10 packages/webpacker/node_modules/core-js/es/instance/copy-within.js
decidim-0.26.9 packages/webpacker/node_modules/core-js/es/instance/copy-within.js
decidim-0.28.0.rc5 packages/webpacker/node_modules/core-js/es/instance/copy-within.js
decidim-0.28.0.rc4 packages/webpacker/node_modules/core-js/es/instance/copy-within.js