Node utility library.
zeelib
is a collection of utility functions. Think Lodash, but for Node. See
the docs for details.
Example usage:
import * as z from 'zeelib'
if (!module.parent) {
z.termPrompt('do the thing?')
.then((yes) => {
if (yes) {
console.log(z.colorize.blue('said yes!'))
}
})
}
If you're using Node require
, you'll need to access default
:
const zeelib = require('zeelib')
zeelib.getArgs.default()
Generated using TypeDoc