1 2 3 4 5 6 7 8 9
import ansiRegex from 'ansi-regex'; export default function stripAnsi(string) { if (typeof string !== 'string') { throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``); } return string.replace(ansiRegex(), ''); }