/ student-intifada / node_modules / denque /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[TXT]CHANGELOG.mda year ago1.1K 
[   ]LICENSEa year ago 11K 
[TXT]README.mda year ago2.8K595aea1 more query options + view options [كارل مبارك]
[TXT]index.d.tsa year ago730  
[   ]index.jsa year ago 12K 
[   ]package.jsona year ago1.7Kafd0ccc remove unused [كارل مبارك]
README.md

Denque

NPM downloads NPM version Tests status Coverage License Follow on Twitter

Denque is a well tested, extremely fast and lightweight double-ended queue implementation with zero dependencies and includes TypeScript types.

Double-ended queues can also be used as a:

This implementation is currently the fastest available, even faster than double-ended-queue, see the benchmarks.

Every queue operation is done at a constant O(1) - including random access from .peekAt(index).

Works on all node versions >= v0.10

Quick Start

Install the package:

npm install denque

Create and consume a queue:

const Denque = require("denque");

const denque = new Denque([1,2,3,4]);
denque.shift(); // 1
denque.pop(); // 4

See the API reference documentation for more examples.


Who's using it?

... and many more.


License


Built and maintained by Invertase.

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80