insulate
v0.0.1
Published
Insulate ===============================================================================
Downloads
5
Readme
Insulate
Insulated JavaScript stores
Usage
var insulated = insulate();
insulated.set('bar', 'foo');
insulated.get('bar'); // 'foo'
insulated.define('isBarFoo', function () {
return this.get('bar') === 'foo';
});
insulated.isBarFoo(); // 'true'Installation
$ npm install insulateTesting
Lint:
$ npm run lintLint and run test suite:
$ npm testLicense
MIT
