
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
dl-queue-ts
Advanced tools
This is a queue data-structure implementation for TypeScript using a doubly linked-list from the package dl-doubly-linked-list
version 1.0.3 or greater.
npm install dl-queue-ts
let q : Queue<T> = new Queue();
Name | Type | Description |
---|---|---|
length | number | Number of elements in the queue. |
Name | Param | Type | Description |
---|---|---|---|
clear | none | Empties the queue. | |
peek | index | number | Returns the element stored at the index position. Throws exception if index is out of bounds. |
pop | none | Pops the top most emlement in the queue. | |
push | element | T | Pushes an element of type T (generic) into the queue. |
Please refer to doc/index.html
for the complete documentation and API reference. The documentation for this project was generated using Compodoc.
let q : Queue<number> = new Queue();
// Pushes elements into the queue
for(let i=0; i<10; i++) {
q.push(i*3);
}
// Gets the elements in an array
let nums : Array<number|null> = queue.toArray();
// Pops an element from the queue
let n : number = q.pop();
// Peek into the array
n = q.peek(3);
// Throws an exception for out of bounds for index
n = q.peek(33);
// Empties the array
q.clear();
FAQs
A queue data-structure implementation for TypeScript.
We found that dl-queue-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.