mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00: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;
|
|
};
|