Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 349B

123456789101112131415
  1. /**
  2. Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
  3. @example
  4. ```
  5. import stripAnsi from 'strip-ansi';
  6. stripAnsi('\u001B[4mUnicorn\u001B[0m');
  7. //=> 'Unicorn'
  8. stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
  9. //=> 'Click'
  10. ```
  11. */
  12. export default function stripAnsi(string: string): string;