aboutsummaryrefslogtreecommitdiff
path: root/node_modules/strip-ansi/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/strip-ansi/index.js')
-rw-r--r--node_modules/strip-ansi/index.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/strip-ansi/index.js b/node_modules/strip-ansi/index.js
deleted file mode 100644
index ef3c095..0000000
--- a/node_modules/strip-ansi/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-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(), '');
-}