UNPKG
@jtabbdev/remove_spaces
Version:
latest (1.0.1)
1.0.1
1.0.0
This removes all spaces from a string
github.com/jonahtabb/npm_lesson
jonahtabb/npm_lesson
@jtabbdev/remove_spaces
/
index.js
4 lines
•
155 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,
""
) }