Sha256: 2333f35f14e45153da22afd3935f27457b8855607bed610ae1b02b9c6a3b691f
Contents?: true
Size: 372 Bytes
Versions: 12
Compression:
Stored size: 372 Bytes
Contents
'use strict'; var collection = require('../internals/collection'); var collectionStrong = require('../internals/collection-strong'); // `Set` constructor // https://tc39.github.io/ecma262/#sec-set-objects module.exports = collection('Set', function (get) { return function Set() { return get(this, arguments.length ? arguments[0] : undefined); }; }, collectionStrong);
Version data entries
12 entries across 12 versions & 4 rubygems