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

package.modules.es.weak-set.constructor.js Maven / Gradle / Ivy

The newest version!
'use strict';
var collection = require('../internals/collection');
var collectionWeak = require('../internals/collection-weak');

// `WeakSet` constructor
// https://tc39.es/ecma262/#sec-weakset-constructor
collection('WeakSet', function (init) {
  return function WeakSet() { return init(this, arguments.length ? arguments[0] : undefined); };
}, collectionWeak);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy