UNPKG
@elminson/logjs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Logjs package
github.com/elminson/logjs
elminson/logjs
@elminson/logjs
/
index.js
5 lines
(4 loc)
•
159 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
,
""
); };