mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 01:27:31 -04:00
7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
|
'use strict';
|
||
|
var ansiRegex = require('ansi-regex')();
|
||
|
|
||
|
module.exports = function (str) {
|
||
|
return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
|
||
|
};
|