mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-mockapi.git
synced 2026-08-25 15:34:28 +00:00
5 lines
150 B
JavaScript
5 lines
150 B
JavaScript
'use strict';
|
|
const ansiRegex = require('ansi-regex');
|
|
|
|
module.exports = input => typeof input === 'string' ? input.replace(ansiRegex(), '') : input;
|