CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.mjs14 linesDownload Raw Back to cliui
1// Bootstrap cliui with CommonJS dependencies:2import { cliui } from './build/lib/index.js'3import { wrap, stripAnsi } from './build/lib/string-utils.js'4 5export default function ui (opts) {6  return cliui(opts, {7    stringWidth: (str) => {8      return [...str].length9    },10    stripAnsi,11    wrap12  })13}14 
basant307/AI_Governance_Project · CoolFace