This commit is contained in:
2024-12-10 00:56:17 +00:00
parent 3b2c082808
commit 0b5b29b339
20 changed files with 933 additions and 1 deletions

7
nodeJS/Project/01/node_modules/strip-ansi/index.js generated vendored Normal file
View File

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