Socket
Socket
Sign inDemoInstall

nanoguard

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nanoguard

Small module that allows you to guard a call to a function.


Version published
Maintainers
1
Install size
7.12 kB
Created

Readme

Source

nanoguard

Small module that allows you to guard a call to a function.

npm install nanoguard

Usage

const Nanoguard = require('nanoguard')
const guard = new Nanoguard()

guard.wait()

// When the amount of wait() calls reflect continue() calls ready is called
guard.ready(function () {
  console.log('Ready to continue!')
})

guard.continue()

API

const guard = new Nanoguard()

Make a new guard instance

guard.wait()

Increment the wait counter. Non-owners of the guard can use this to defer the ready function of the guard owner.

guard.continue()

Decrement the wait counter on the next tick. If the counter is 0 it calls all pending ready functions. If you called wait() you have to call continue() at some point.

guard.continueSync()

Same as guard.continue() but decrements in the same tick.

const cont = guard.waitAndContinue()

Calls wait and returns a function that when called calls continue() once no matter how many times it is called.

guard.ready(fn)

Pass a function that is called when the wait counter is 0.

guard.destroy()

Force sets the wait counter to 0 forever. Should only be called by the owner of the guard.

const bool = guard.waiting

Boolean indicating if the wait counter is > 0.

License

MIT

FAQs

Last updated on 14 Feb 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc