You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var regAnsi = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g; |
|
exports = function(str) { |
|
return str.replace(regAnsi, ''); |
|
}; |
|
|
|
module.exports = exports;
|
|
|