All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._set-species.js Maven / Gradle / Ivy

The newest version!
'use strict';
var global = require('./_global');
var dP = require('./_object-dp');
var DESCRIPTORS = require('./_descriptors');
var SPECIES = require('./_wks')('species');

module.exports = function (KEY) {
  var C = global[KEY];
  if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {
    configurable: true,
    get: function () { return this; }
  });
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy