Files
huishou/node_modules/licia/stripColor.js
T
2026-07-27 14:07:26 +08:00

7 lines
152 B
JavaScript

var regColor = /\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]/g;
exports = function(str) {
return str.replace(regColor, '');
};
module.exports = exports;