All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.bower.lib.node_modules.strip-ansi.index.js Maven / Gradle / Ivy

'use strict';
var ansiRegex = require('ansi-regex')();

module.exports = function (str) {
	return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy