UNPKG
word-counter-api
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Word counting API w/CLI
github.com/hiimjustin000/word-counter-api
hiimjustin000/word-counter-api
word-counter-api
/
counter.js
3 lines
•
112 B
JavaScript
View Raw
1
2
3
module
.
exports
= function
counter
(text)
{
return
{ words: text.split(
" "
).length, characters: text.length } }