mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07: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;
|