UNPKG
@devniklesh/remove-spaces
Version:
latest (2.0.1)
3.0.0
2.0.1
2.0.0
1.0.0
Removes spaces in a string
github.com/DevNiklesh/remove-spaces
DevNiklesh/remove-spaces
@devniklesh/remove-spaces
/
index.js
4 lines
•
187 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
function
removeSpaces
(
string
) {
if
(
typeof
string
!==
"string"
)
throw
new
TypeError
(
"Remove spaces package wants a string!"
);
return
string
.
replace
(
/\s/g
,
""
); };