Files
site/nova-components/NovaLeader/node_modules/strip-ansi/index.js
2025-04-21 16:03:20 +02:00

7 lines
161 B
JavaScript
Vendored

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