Native Queue Example
A C++ queue abstraction for nodejs
API Usage
Queueprototype
Pushes an integer n
to the back of the queue.
Queueprototype;
Pops head from the queue and returns its value.
Queueprototype;
Returns head's value without popping it from the queue.
Example
const Queue = ; const q = ; q; q;// => 5