1.1.0 • Published 7 years ago

@reed665/wordscount v1.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

wordscount

Simple function to help you count words in a text

Installation

npm i @reed665/wordscount

Usage

import wordscount from '@reed665/wordscount'

const text = 'Love to hate to love'
const textWordsCount = wordscount(text)

Object.keys(textWordsCount) // ['love', 'to', 'hate']
textWordsCount.love // 2
textWordsCount.to // 2
textWordsCount.hate // 1
1.1.0

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago