Skip to content
This repository was archived by the owner on Feb 23, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 650 Bytes

File metadata and controls

25 lines (17 loc) · 650 Bytes

once

CircleCI

async friendly version of https://www.npmjs.com/package/once

usage

in your npm console:

npm install --save @rootstream/once

in your code:

const once = require('@rootstream/once');

async function sample() { /* ... */ };
// guarantees sample() is called only and only once during app's lifetime
const sampleOnce = once(sample)
// guarantees sample() is called only and only once during function's execution lifetime
const sampleOnceReentrant = once(sample, { reentrant: true })