UNPKG
mstr-viz
Version:
latest (2.15.5)
2.15.5
2.15.4
2.15.3
2.15.2
2.15.1
2.15.0
2.14.4
2.14.3
2.14.2
2.14.1
2.14.0
2.13.0
2.12.3
2.12.2
2.12.1
2.12.0
2.11.0
2.10.1
2.10.0
2.9.0
2.8.2
2.8.1
2.8.0
2.7.0
2.6.4
2.6.2
2.6.0
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
A new dev tool for creating custom visualizations
mstr-viz
/
src
/
utils
/
space.js
8 lines
(7 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/** * escape the whitespace before being used as command line's argument */
module
.
exports
= {
escape
:
str
=>
str.
replace
(
/ /g
,
'%20'
),
recover
:
str
=>
str.
replace
(
/%20/g
,
' '
), };