UNPKG

word-counter-api

Version:
3 lines 112 B
module.exports = function counter(text) { return { words: text.split(" ").length, characters: text.length } }