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