This commit is contained in:
2020-08-20 11:44:32 +02:00
parent 4715fc1814
commit 6aceefeb2f
2891 changed files with 11239 additions and 347539 deletions

5
node_modules/strip-ansi/index.js generated vendored
View File

@@ -1,7 +1,4 @@
'use strict';
const ansiRegex = require('ansi-regex');
const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
module.exports = stripAnsi;
module.exports.default = stripAnsi;
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;