blob: 099480fbfc54cb238d6d190fda653408fbf1ef7f [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2var ansiRegex = require('ansi-regex')();
3
4module.exports = function (str) {
5 return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6};