mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-11 17:34:58 +00:00
5 lines
154 B
JavaScript
5 lines
154 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|