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:
12
react-app/node_modules/core-js/modules/es6.weak-set.js
generated
vendored
Normal file
12
react-app/node_modules/core-js/modules/es6.weak-set.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
var weak = require('./$.collection-weak');
|
||||
|
||||
// 23.4 WeakSet Objects
|
||||
require('./$.collection')('WeakSet', function(get){
|
||||
return function WeakSet(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };
|
||||
}, {
|
||||
// 23.4.3.1 WeakSet.prototype.add(value)
|
||||
add: function add(value){
|
||||
return weak.def(this, value, true);
|
||||
}
|
||||
}, weak, false, true);
|
Reference in New Issue
Block a user