Add Initial commit

This commit is contained in:
Lev
2021-06-16 17:23:26 -05:00
parent ab56bbf9fc
commit d3d84e81c3
816 changed files with 157084 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// Bootstrap cliui with CommonJS dependencies:
import { cliui } from './build/lib/index.js'
import { wrap, stripAnsi } from './build/lib/string-utils.js'
export default function ui (opts) {
return cliui(opts, {
stringWidth: (str) => {
return [...str].length
},
stripAnsi,
wrap
})
}