UNPKG
@abhishek-parmar1/flexy
Version:
latest (2.0.0)
2.0.0
1.0.0
A layout library based on flex.
github.com/abhishek-parmar1/flexy
abhishek-parmar1/flexy
@abhishek-parmar1/flexy
/
index.js
5 lines
(4 loc)
•
161 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
=
function
flexy
(
string
) {
if
(
typeof
string
!==
"string"
)
throw
new
TypeError
(
"Flexy wants a string!"
);
return
string
.
replace
(
/\s/g
,
""
); };