0.1.3 • Published 9 years ago

icicle v0.1.3

Weekly downloads
1,924
License
unlicense
Repository
github
Last release
9 years ago

❄ Icicle Build Status Code Climate

Tiny mutex.

$ npm install icicle

var icicle = require('icicle');

var a = {};

icicle.freeze(a, 'waitABit'); // true - lock is set
icicle.freeze(a, 'waitABit'); // false - lock is already set

icicle.isFrozen(a, 'waitABit'); // true

icicle.unfreeze(a, 'waitABit'); // true - lock is unset
icicle.unfreeze(a, 'waitABit'); // false - lock isn’t set

icicle.isFrozen(a, 'waitABit'); // false

NPM

0.1.3

9 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago