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.
5 lines
152 B
JavaScript
5 lines
152 B
JavaScript
'use strict';
|
|
var ansiRegex = require('ansi-regex');
|
|
var re = new RegExp(ansiRegex().source); // remove the `g` flag
|
|
module.exports = re.test.bind(re);
|