A tiny function for deleting ANSI escape sequences from a string.
npm install ansi-purge
import color from 'tiny-colors';
import ansiPurge from 'ansi-purge';
// Let's remove ANSI escapes from a string
console.log ( ansiPurge ( color.red ( 'Hello' ) ) ); // => 'Hello'
MIT © Fabio Spampinato