
Product
Socket Now Protects the Firefox Extension Ecosystem
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.
it-queueless-pushable
Advanced tools
A pushable queue that waits until a value is consumed before accepting another
A pushable queue that waits until a value is consumed before accepting another
A pushable async generator that waits until the current value is consumed before allowing a new value to be pushed.
Useful for when you don't want to keep memory usage under control and/or allow a downstream consumer to dictate how fast data flows through a pipe, but you want to be able to apply a transform to that data.
import { queuelessPushable } from 'it-queueless-pushable'
const pushable = queuelessPushable<string>()
// run asynchronously
Promise.resolve().then(async () => {
// push a value - the returned promise will not resolve until the value is
// read from the pushable
await pushable.push('hello')
})
// read a value
const result = await pushable.next()
console.info(result) // { done: false, value: 'hello' }
$ npm i it-queueless-pushable
<script> tagLoading this module through a script tag will make its exports available as ItQueuelessPushable in the global namespace.
<script src="https://unpkg.com/it-queueless-pushable/dist/index.min.js"></script>
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
FAQs
A pushable queue that waits until a value is consumed before accepting another
The npm package it-queueless-pushable receives a total of 74,184 weekly downloads. As such, it-queueless-pushable popularity was classified as popular.
We found that it-queueless-pushable demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.