Sha256: 9e3c02c12b30ac1700045c18fa1fc0023039e338d51d84c74649542a8bf91990
Contents?: true
Size: 407 Bytes
Versions: 62
Compression:
Stored size: 407 Bytes
Contents
/* */ 'use strict'; var strong = require('./$.collection-strong'); require('./$.collection')('Map', function(get) { return function Map() { return get(this, arguments[0]); }; }, { get: function get(key) { var entry = strong.getEntry(this, key); return entry && entry.v; }, set: function set(key, value) { return strong.def(this, key === 0 ? 0 : key, value); } }, strong, true);
Version data entries
62 entries across 31 versions & 1 rubygems