mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-11 05:11:40 +00:00
update
This commit is contained in:
11
node_modules/core-js/modules/es6.reflect.is-extensible.js
generated
vendored
Normal file
11
node_modules/core-js/modules/es6.reflect.is-extensible.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
// 26.1.10 Reflect.isExtensible(target)
|
||||
var $export = require('./_export');
|
||||
var anObject = require('./_an-object');
|
||||
var $isExtensible = Object.isExtensible;
|
||||
|
||||
$export($export.S, 'Reflect', {
|
||||
isExtensible: function isExtensible(target) {
|
||||
anObject(target);
|
||||
return $isExtensible ? $isExtensible(target) : true;
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user