mirror of
https://github.com/astefanutti/decktape.git
synced 2024-12-12 13:49:13 +03:00
e2bb2c93c3
Activates CLI string styling with Chalk except on Windows OS. Adds the libs directory to the require paths for seamless referencing of require libraries.
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;
|
|
};
|