first
This commit is contained in:
14
node_modules/core-js/internals/set-helpers.js
generated
vendored
Normal file
14
node_modules/core-js/internals/set-helpers.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
var uncurryThis = require('../internals/function-uncurry-this');
|
||||
|
||||
// eslint-disable-next-line es/no-set -- safe
|
||||
var SetPrototype = Set.prototype;
|
||||
|
||||
module.exports = {
|
||||
// eslint-disable-next-line es/no-set -- safe
|
||||
Set: Set,
|
||||
add: uncurryThis(SetPrototype.add),
|
||||
has: uncurryThis(SetPrototype.has),
|
||||
remove: uncurryThis(SetPrototype['delete']),
|
||||
proto: SetPrototype
|
||||
};
|
Reference in New Issue
Block a user