Package Exports
- refcounter
- refcounter/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (refcounter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
refcounter
Simple refcounter
npm install refcounterUsage
const RefCounter = require('refcounter')
const refs = new RefCounter()
refs.inc()
refs.dec()
refs.isIdle() // true is no refs
await refs.idle() // wait for no refsLicense
Apache-2.0