Sign in
chromium
/
devtools
/
devtools-frontend
/
d3425b95d0ff161d2615702f7a686cc8702980a7
/
.
/
node_modules
/
strip-ansi
/
index.js
blob: 96e0292c8e2f648c7c4f3a6172cb0a08fea222df [
file
] [
log
] [
blame
]
'use strict'
;
const
ansiRegex
=
require
(
'ansi-regex'
);
module
.
exports
=
input
=>
typeof
input
===
'string'
?
input
.
replace
(
ansiRegex
(),
''
)
:
input
;