mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-15 02:21:59 +02:00
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
'use strict';
|
|
var ansiRegex = require('ansi-regex')();
|
|
|
|
module.exports = function (str) {
|
|
return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
|
|
};
|