1
hao
2025-03-27 e610e1c17f62b423a717fadaaa7b139d02857793
1
2
3
4
'use strict';
const ansiRegex = require('ansi-regex');
 
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;