mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-03 19:10:43 +08:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
|
|
|
module.exports = stripAnsi;
|
|
module.exports.default = stripAnsi;
|