UNPKG
@msydyka/removespaces
Version:
latest (1.0.1)
1.0.1
1.0.0
github.com/medina-s/removespaces
medina-s/removespaces
@msydyka/removespaces
/
index.js
4 lines
•
156 B
JavaScript
View Raw
1
2
3
4
module
.
exports
= removeSpace =
str
=>
{
if
(
typeof
str !==
'string'
)
throw
new
TypeError
(
"A string is required."
)
return
str.
replace
(
/\s/g
,
""
); }