Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.164.253
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
cyclist /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
6
B
-rw-r--r--
2013-06-12 22:53
README.md
1.19
KB
-rw-r--r--
2013-07-30 20:08
index.js
697
B
-rw-r--r--
2013-07-30 19:50
package.json
1.19
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# Cyclist Cyclist is an efficient [cyclic list](http://en.wikipedia.org/wiki/Circular_buffer) implemention for Javascript. It is available through npm npm install cyclist ## What? Cyclist allows you to create a list of fixed size that is cyclic. In a cyclist list the element following the last one is the first one. This property can be really useful when for example trying to order data packets that can arrive out of order over a network stream. ## Usage ``` js var cyclist = require('cyclist'); var list = cyclist(4); // if size (4) is not a power of 2 it will be the follwing power of 2 // this buffer can now hold 4 elements in total list.put(42, 'hello 42'); // store something and index 42 list.put(43, 'hello 43'); // store something and index 43 console.log(list.get(42)); // prints hello 42 console.log(list.get(46)); // prints hello 42 again since 46 - 42 == list.size ``` ## API * `cyclist(size)` creates a new buffer * `cyclist#get(index)` get an object stored in the buffer * `cyclist#put(index,value)` insert an object into the buffer * `cyclist#del(index)` delete an object from an index * `cyclist#size` property containing current size of buffer ## License MIT