UNPKG
@goul/aescript
Version:
latest (1.0.1)
1.0.1
1.0.0
AE scripting
github.com/goul/aescript
goul/aescript
@goul/aescript
/
index.js
4 lines
•
167 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
function
tiny
(
string
) {
if
(
typeof
string
!==
"string"
)
throw
new
TypeError
(
"Tiny wants a string!"
);
return
string
.
replace
(
/\s/g
,
""
); };