/ moubarak.eu / node_modules / es6-weak-map /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2 years ago -  
[TXT]CHANGELOG.md2 years ago279  
[   ]CHANGES2 years ago1.4K 
[   ]LICENSE2 years ago773  
[TXT]README.md2 years ago2.3K9b1f1b9 rm old utils [كارل مبارك]
[   ]implement.js2 years ago222  
[   ]index.js2 years ago 97 9b1f1b9 rm old utils [كارل مبارك]
[   ]is-implemented.js2 years ago621  
[   ]is-native-implemented.js2 years ago273  
[   ]is-weak-map.js2 years ago403  
[   ]package.json2 years ago899 2324c9f added npm start script [كارل مبارك]
[   ]polyfill.js2 years ago2.2K 
[   ]valid-weak-map.js2 years ago186  
README.md

Build status Windows status Transpilation status npm version

es6-weak-map

WeakMap collection as specified in ECMAScript6

Roughly inspired by Mark Miller's and Kris Kowal's WeakMap implementation.

Differences are:

Limitations

Installation

$ npm install es6-weak-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

Usage

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

require("es6-weak-map/implement");

If you'd like to use native version when it exists and fallback to polyfill if it doesn't, but without implementing WeakMap on global scope, do:

var WeakMap = require("es6-weak-map");

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

var WeakMap = require("es6-weak-map/polyfill");

API

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

var WeakMap = require("es6-weak-map");

var map = new WeakMap();
var obj = {};

map.set(obj, "foo"); // map
map.get(obj); // 'foo'
map.has(obj); // true
map.delete(obj); // true
map.get(obj); // undefined
map.has(obj); // false
map.set(obj, "bar"); // map
map.has(obj); // false

Tests

$ npm test
Apache/2.4.38 (Debian) Server at www.karls.computer Port 80