
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
shuffled-priority-queue
Advanced tools
A priority queue that shuffles elements with the same priority.
A priority queue that shuffles elements with the same priority.
npm install shuffled-priority-queue
const spq = require('shuffled-priority-queue')
const queue = spq()
queue.add({
priority: 0,
value: 'hello'
})
queue.add({
priority: 0,
value: 'world'
})
queue.add({
priority: 1,
value: 'welt'
})
queue.add({
priority: 2,
value: 'verden'
})
console.log(queue.shift()) // returns {value: 'verden'}
console.log(queue.shift()) // returns {value: 'welt'}
console.log(queue.shift()) // returns {value: 'hello'} or {value: 'world'}
console.log(queue.shift()) // returns {value: 'hello'} or {value: 'world'}
console.log(queue.shift()) // returns null (empty queue)
const queue = spq()
Create a new queue.
value = queue.add(value)
Add a new value to the queue. The value is returned for convenience
If you set value.priority
to a number, it'll be added to the queue at that priority.
queue.remove(value)
Remove a value from the queue.
bool = queue.has(value)
Check if a value is in the queue.
value = queue.shift()
Shift the next value off the queue.
The value returned will have the highest priority off the queue. If multiple values have the same priority a random one is returned.
value = queue.head()
Same as shift()
but does not mutate the queue.
value = queue.pop()
Same as shift()
but returns a value with the lowest priority.
value = queue.tail()
Same as pop()
but does not mutate the queue.
queue.length
Property containing how many items are in the queue
for (const value of queue)
Iterate the queue from highest priority to lowest using the for of
syntax
value = queue.next([prevValue])
Iterate the queue from highest priority to lowest.
let prevValue = null
while (prevValue = queue.next(prevValue)) {
console.log('value:', prevValue)
}
value = queue.prev([prevValue])
Iterate the queue from lowest priority to highest.
let prevValue = null
while (prevValue = queue.prev(prevValue)) {
console.log('value:', prevValue)
}
MIT
FAQs
A priority queue that shuffles elements with the same priority.
The npm package shuffled-priority-queue receives a total of 6,984 weekly downloads. As such, shuffled-priority-queue popularity was classified as popular.
We found that shuffled-priority-queue 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.