mirror of
https://github.com/astefanutti/decktape.git
synced 2024-12-14 16:52:54 +03:00
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);
|