Files
bug-em/node_modules/strip-ansi/index.js
Talor Berthelson 889faf9c1c lol
2016-06-17 20:49:15 -04:00

7 lines
161 B
JavaScript

'use strict';
var ansiRegex = require('ansi-regex')();
module.exports = function (str) {
return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
};