// SYSTEM PANEL //
[ROOT]
/
lib
/
node_modules
/
npm
/
node_modules
/
string-width
/
node_modules
/
strip-ansi
[ PARENT ]
EDIT :: index.js
'use strict'; const ansiRegex = require('ansi-regex'); module.exports = input => typeof input === 'string' ? input.replace(ansiRegex(), '') : input;
SAVE
CANCEL