UNPKG

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