Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/table/node_modules/strip-ansi/index.d.ts')
-rw-r--r--assets/node_modules/table/node_modules/strip-ansi/index.d.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/assets/node_modules/table/node_modules/strip-ansi/index.d.ts b/assets/node_modules/table/node_modules/strip-ansi/index.d.ts
deleted file mode 100644
index 44e954d..0000000
--- a/assets/node_modules/table/node_modules/strip-ansi/index.d.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
-Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
-
-@example
-```
-import stripAnsi from 'strip-ansi';
-
-stripAnsi('\u001B[4mUnicorn\u001B[0m');
-//=> 'Unicorn'
-
-stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
-//=> 'Click'
-```
-*/
-export default function stripAnsi(string: string): string;