/
usr
/
lib
/
node_modules
/
pnpm
/
dist
/
node_modules
/
strip-ansi
/
/usr/lib/node_modules/pnpm/dist/node_modules/strip-ansi
mkdir
upload
Name
Size
Mode
Actions
index.js
468
0644
edit
dl
rm
license
1117
0644
edit
dl
rm
package.json
914
0644
edit
dl
rm
Edit:
/usr/lib/node_modules/pnpm/dist/node_modules/strip-ansi/index.js
(468B)
import ansiRegex from 'ansi-regex'; const regex = ansiRegex(); export default function stripAnsi(string) { if (typeof string !== 'string') { throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``); } // Even though the regex is global, we don't need to reset the `.lastIndex` // because unlike `.exec()` and `.test()`, `.replace()` does it automatically // and doing it manually has a performance penalty. return string.replace(regex, ''); }
Save
cmd:
run