stop-n-go
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:An Easy DSL to manage a stack that puts the first node in the back for next time.
# Stop-N-Go

Your favorite array stack that retreived the first item in the array and
then removes it and add it into the back of the array.  This module will
create a continuous stack of items in array that always keeps the first
one in the array as the one that is least used.

## Install

``` sh
npm install stop-n-go
```

## Usage

``` javascript
var list = require('stop-n-go');

list.add('foo');
list.add('foo2');
list.add('foo3');

list.all();
#> ['foo', 'foo2', 'foo3']
list.get();
#> 'foo'
list.all();
#> ['foo2', 'foo3', 'foo']
list.remove('foo3');
#> ['foo2','foo']
list.get();
#> 'foo2'
list.all();
#> ['foo','foo2']
```

## License

See LICENSE

## Contributions

pull requests welcome



本源码包内暂不包含可直接显示的源代码文件,请下载源码包。