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