7 lines
161 B
JavaScript
Raw Normal View History

2018-01-05 10:48:13 -08:00
'use strict';
var ansiRegex = require('ansi-regex')();
module.exports = function (str) {
return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
};