0.1.5 • Published 8 years ago

es6-map v0.1.5

Weekly downloads
1,915,949
License
MIT
Repository
github
Last release
8 years ago

es6-map

Map collection as specified in ECMAScript6

Warning:
v0.1 version does not ensure O(1) algorithm complexity (but O(n)). This shortcoming will be addressed in v1.0

Usage

It’s safest to use es6-map as a ponyfill – a polyfill which doesn’t touch global objects:

var Map = require('es6-map');

If you want to make sure your environment implements Map globally, do:

require('es6-map/implement');

If you strictly want to use the polyfill even if the native Map exists, do:

var Map = require('es6-map/polyfill');

Installation

$ npm install es6-map

To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: Browserify, Webmake or Webpack

API

Best is to refer to specification. Still if you want quick look, follow examples:

var Map = require('es6-map');

var x = {}, y = {}, map = new Map([['raz', 'one'], ['dwa', 'two'], [x, y]]);

map.size;                 // 3
map.get('raz');           // 'one'
map.get(x);               // y
map.has('raz');           // true
map.has(x);               // true
map.has('foo');           // false
map.set('trzy', 'three'); // map
map.size                  // 4
map.get('trzy');          // 'three'
map.has('trzy');          // true
map.has('dwa');           // true
map.delete('dwa');        // true
map.size;                 // 3

map.forEach(function (value, key) {
  // { 'raz', 'one' }, { x, y }, { 'trzy', 'three' } iterated
});

// FF nightly only:
for (value of map) {
 // ['raz', 'one'], [x, y], ['trzy', 'three'] iterated
}

var iterator = map.values();

iterator.next(); // { done: false, value: 'one' }
iterator.next(); // { done: false, value: y }
iterator.next(); // { done: false, value: 'three' }
iterator.next(); // { done: true, value: undefined }

map.clear(); // undefined
map.size; // 0

Tests Build Status

$ npm test
sms-fluidcomponents-sass-importer@sitegeist/sms-sass-importersms-sass-importerve-playersass-modules-importercthpb-plugin-social@infinitebrahmanuniverse/nolb-es6@everything-registry/sub-chunk-1596test-node-red-contrib-opcuawonder-slatewow.js-juzixdatwy-webvideo-sdkthing-it-device-amxthing-it-device-bacnettick-mapvcloudcam-playkit-js-hlsvenom-player@dlmanning/bind@cycle/web@caneco/siema@rstacruz/pnpmj22-slatejosh-fcajs-utils-jll2ircsklumsp-build-taskssolregex2terryoy-slatetovar.js@artiso-solutions/vue-html-to-paper@bjoerge/slate@cdevine49/react-numeric-inputzy_sdkzsbonc-node-red-contrib-opcuavue-v3-yandex-metrika@gendronb/fastify-named-routes@innodata/vue-v3-ya-metrika@inovando-boletos/boleto@kristoffertonning/vue-laravel-errors@kronoverse/ioredis-mock@krwhitley/neataptic@kmwork/front-core@lets-talk/embedded-lisp@ngxvoice/ngx-voicelistner@mblode/react-native-feather@kgdev/slate@kess-flow/ioredis-mock@qintx/zeditor@rxjs/rx@quarterto/eq@reagentum/front-core@openrc/react-native-mqtt@pnp/polyfill-ie11@pathable/slate@numso/eslint-plugin-import@orangesk/orange-design-system@opuscapita/slate@socialtables/openfpc@spalger/eslint-plugin-importmultipass-torrentmqtt-no-shebangmqttjxoutils-renobservable-mapobservable-multi-setobject-cache-graph-thingsass-glob-importersearch-list-reactsearch-input-reactscorpion4dev-mqtt-clientscope-analyzerrozu-queuereact-css-modules-themesandfox-timeout-schedulersass-module-importerpyplan-bokehjsremix-demoreact-native-mqtt-clientsahara-action-storesahara-data-storenode-red-contrib-simatic-opcua-eventnode-red-contrib-opcua-zhnomad-slatenode-red-contrib-novakonnode-red-contrib-opcua-mpsnode-red-contrib-opcua-tempopictawall.sdkplaykit-js-hls-sondqpolityrimindersimple-memoizeshapesslate-packagesreactive-mapgl-enginegraphsgrunt-vca-element-releaseindex-segment
0.1.5

8 years ago

0.1.4

9 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.1

11 years ago

0.0.0

12 years ago