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