UNPKG
@m_theo/small
Version:
latest (2.0.0)
2.0.0
1.0.0
Retrun some gibberish words
@m_theo/small
/
index.js
6 lines
(4 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
function
small
(
string
) {
if
(
typeof
string
!=
'string'
)
throw
new
TypeError
(
'small accepts strings'
)
return
'hehee hehe xoxo'
}