mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-22 15:05:54 +03:00
4 lines
150 B
JavaScript
4 lines
150 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
module.exports = input => typeof input === 'string' ? input.replace(ansiRegex(), '') : input;
|