mirror of
https://github.com/actions/setup-go.git
synced 2025-06-30 13:13:43 +00: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;
|