UNPKG
@gaarutyunov/jest-sonar
Version:
latest (1.1.5)
1.1.5
1.1.3
1.1.1
1.1.0
1.0.2
A sonar reporter for jest
github.com/gaarutyunov/jest-sonar
gaarutyunov/jest-sonar
@gaarutyunov/jest-sonar
/
src
/
escape.js
8 lines
(6 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
entities =
require
(
'entities'
);
const
stripAnsi =
require
(
'strip-ansi'
);
module
.
exports
=
value
=>
{
if
(
typeof
value !==
'string'
)
return
''
;
return
entities.
encodeXML
(
stripAnsi
(value)); };