You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
316 B
15 lines
316 B
'use strict';
|
|
var getBuiltIn = require('../internals/get-built-in');
|
|
var caller = require('../internals/caller');
|
|
|
|
var Set = getBuiltIn('Set');
|
|
var SetPrototype = Set.prototype;
|
|
|
|
module.exports = {
|
|
Set: Set,
|
|
add: caller('add', 1),
|
|
has: caller('has', 1),
|
|
remove: caller('delete', 1),
|
|
proto: SetPrototype
|
|
};
|