mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
19
react-app/node_modules/core-js/modules/es6.reflect.define-property.js
generated
vendored
Normal file
19
react-app/node_modules/core-js/modules/es6.reflect.define-property.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)
|
||||
var $ = require('./$')
|
||||
, $export = require('./$.export')
|
||||
, anObject = require('./$.an-object');
|
||||
|
||||
// MS Edge has broken Reflect.defineProperty - throwing instead of returning false
|
||||
$export($export.S + $export.F * require('./$.fails')(function(){
|
||||
Reflect.defineProperty($.setDesc({}, 1, {value: 1}), 1, {value: 2});
|
||||
}), 'Reflect', {
|
||||
defineProperty: function defineProperty(target, propertyKey, attributes){
|
||||
anObject(target);
|
||||
try {
|
||||
$.setDesc(target, propertyKey, attributes);
|
||||
return true;
|
||||
} catch(e){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user