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