1.0.2 • Published 7 years ago

anagram-finder v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Anagram Finder

NPM Build Status

Anagram Finder is a module for finding anagrams. See wiki page for more details.

Installation

npm install anagram-finder

Usage

var anagramFinder = require('anagram-finder'),
    keywords      = ['hi', 'hello', 'bye', 'helol', 'abc', 'cab', 'bac', 5, {}, []];

anagramFinder.find(keywords);
/*
[ [ 'hi' ],
  [ 'hello', 'helol' ],
  [ 'bye' ],
  [ 'abc', 'cab', 'bac' ] ]
*/

License

Licensed under The MIT License (MIT)
For the full copyright and license information, please view the LICENSE.txt file.

1.0.2

7 years ago

1.0.1

9 years ago

1.0.0

10 years ago

0.1.0

10 years ago