UNPKG
@kdthanvi/pkgx
Version:
latest (2.0.0)
2.0.0
1.0.0
A tiny npm package
github.com/kdthanvi/pkgx
kdthanvi/pkgx
@kdthanvi/pkgx
/
index.js
5 lines
(4 loc)
•
161 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
=
function
pkgx
(
string
){
if
(
typeof
string
!==
"string"
)
throw
new
TypeError
(
"pkgx wants a string!"
);
return
string
.
replace
(
/\s/g
,
""
); };