index.js 151 B

1234
  1. 'use strict';
  2. module.exports = function (str) {
  3. return typeof str === 'string' ? str.replace(/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]/g, '') : str;
  4. };