1.0.0 • Published 3 years ago

@melgrove/base v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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()
// ...
1.0.0

3 years ago