One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
452554
/
root
/
usr
/
share
/
doc
/
node-yapool
/
Edit File:
README.md
# yapool Yet Another object pool in JavaScript Because [yallist](http://npm.im/yallist) is sometimes too featureful, this is a very dead-simple linked-list pool thingie in JavaScript that lets you add and remove objects in a set. Not suitable for very long lists, because all searches are `O(n)`, but for small `n`, it has very low complexity. ## API `p = new Pool()` Constructor takes no arguments `p.add(someObject)` put an object in the pool `p.length` return the number of things in the pool. `p.remove(someObject)` remove that object from the pool.
Simpan