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 : 18.217.230.80
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
var ensureTwoPower = function(n) { if (n && !(n & (n - 1))) return n; var p = 1; while (p < n) p <<= 1; return p; }; var Cyclist = function(size) { if (!(this instanceof Cyclist)) return new Cyclist(size); size = ensureTwoPower(size); this.mask = size-1; this.size = size; this.values = new Array(size); }; Cyclist.prototype.put = function(index, val) { var pos = index & this.mask; this.values[pos] = val; return pos; }; Cyclist.prototype.get = function(index) { return this.values[index & this.mask]; }; Cyclist.prototype.del = function(index) { var pos = index & this.mask; var val = this.values[pos]; this.values[pos] = undefined; return val; }; module.exports = Cyclist;