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