@melgrove/base
v1.0.0
Published
Things I want to have in js
Downloads
2
Readme
Things I want in javascript
Import tools into global scope (somewhat scary)
require('@melgrove/base')();
// can use as a global variable
unreduce()
type()
// ...
Import tools into object (not scary)
const tools = require('@melgrove/base')({global: false});
// can use from tools
tools.unreduce()
tools.type()
// ...