sam522's picture
node
d4b85c0
raw
history blame contribute delete
154 Bytes
'use strict';
const ansiRegex = require('ansi-regex');
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;