"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.stripAnsi = void 0; const index_js_1 = require("../ansi-regex/index.js"); const regex = (0, index_js_1.ansiRegex)(); const stripAnsi = (str) => str.replace(regex, ""); exports.stripAnsi = stripAnsi; //# sourceMappingURL=index.js.map