source: node_modules/core-js-pure/internals/array-method-has-species-support.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 687 bytes
Line 
1'use strict';
2var fails = require('../internals/fails');
3var wellKnownSymbol = require('../internals/well-known-symbol');
4var V8_VERSION = require('../internals/engine-v8-version');
5
6var SPECIES = wellKnownSymbol('species');
7
8module.exports = function (METHOD_NAME) {
9 // We can't use this feature detection in V8 since it causes
10 // deoptimization and serious performance degradation
11 // https://github.com/zloirock/core-js/issues/677
12 return V8_VERSION >= 51 || !fails(function () {
13 var array = [];
14 var constructor = array.constructor = {};
15 constructor[SPECIES] = function () {
16 return { foo: 1 };
17 };
18 return array[METHOD_NAME](Boolean).foo !== 1;
19 });
20};
Note: See TracBrowser for help on using the repository browser.