aureooms/js-pubsub

View on GitHub
doc/manual/usage.md

Summary

Maintainability
Test Coverage
The code needs a ES2015+ polyfill to work, for example
[babel-polyfill](https://babeljs.io/docs/usage/polyfill).
```js
require( 'babel-polyfill' ) ;
// or
import 'babel-polyfill' ;
```

Then
```js
const measure = require( '@aureooms/js-pubsub' ) ;
// or
import measure from '@aureooms/js-pubsub' ;
```