blob: 9788c96dfa3b0cc62b8bbb0356924b115714a749 (
plain)
1
2
3
4
5
6
7
|
'use strict';
const ansiRegex = require('ansi-regex');
const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
module.exports = stripAnsi;
module.exports.default = stripAnsi;
|