mirror of
https://git.studyfor.work/actions/action-send-mail.git
synced 2026-01-12 00:56:03 +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;
|