UNPKG
map-transform-cjs
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
MapTransform with CJS support
github.com/oderayi/map-transform-cjs
oderayi/map-transform-cjs
map-transform-cjs
/
dist
/
utils
/
escape.js
8 lines
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// src/utils/escape.ts
var
escapeValue
= (
value
) => value ===
void
0
?
"**undefined**"
: value;
var
unescapeValue
= (
value
) => value ===
"**undefined**"
?
void
0
: value;
export
{ escapeValue, unescapeValue };
//# sourceMappingURL=escape.js.map