UNPKG
@alfsnd/tiny
Version:
latest (2.0.0)
2.0.0
1.0.0
Removes all spaces from a string
github.com/alfsnd/tiny
alfsnd/tiny
@alfsnd/tiny
/
index.js
4 lines
•
162 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
function
tiny
(
string
) {
if
(
typeof
string
!==
"string"
)
throw
new
TypeError
(
"Tiny wants a string!"
);
return
string
.
replace
(
/\s/g
,
""
); };