aswi2020vldc-gitlab/templetes/node_modules/strip-ansi/index.js @ 9b6ff40e
1 |
'use strict'; |
---|---|
2 |
var ansiRegex = require('ansi-regex')(); |
3 |
|
4 |
module.exports = function (str) { |
5 |
return typeof str === 'string' ? str.replace(ansiRegex, '') : str; |
6 |
};
|