aboutsummaryrefslogtreecommitdiff
path: root/node_modules/strip-ansi/index.js
blob: ef3c095f5fd42296aa6c15bea12053fcdfcbbf49 (plain)
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(), '');
}