File size: 154 Bytes
c1b3a0c
 
 
 
1
2
3
4
5
'use strict';
const ansiRegex = require('ansi-regex');

module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;