All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.set-helpers.js Maven / Gradle / Ivy

The newest version!
'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
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy