• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2const ansiRegex = require('ansi-regex');
3
4module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
5