Normalize an array of keywords. Sorts and removes duplicates and common words (uses the 100 most common english words).
Install
npm:
Install withnpm i normalize-keywords --save-dev
Run tests
npm test
Usage
var normalize = ;var keywords = 'javascript' 'objects' 'object-hash'; ;//=> [ 'hash', 'javascript', 'object', 'object-hash' ] ;//=> [ 'hash', 'javascript', 'object-hash' ]
Author
Jon Schlinkert
License
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on October 09, 2014.