An open API service indexing awesome lists of open source software.

https://github.com/tleunen/anagram-checker

Check if multiple strings are anagrams
https://github.com/tleunen/anagram-checker

Last synced: about 1 year ago
JSON representation

Check if multiple strings are anagrams

Awesome Lists containing this project

README

          

# Anagram-Checker

Simple module to check if multiple string are anagrams.

## Example

```
var AnagramChecker = require('anagram-checker');

AnagramChecker('silenced', 'licensed', 'Declines'); // true
```

## Install

Install with npm:

`npm install anagram-checker`

## License

MIT, see [LICENSE.md](http://github.com/tleunen/anagram-checker/blob/master/LICENSE.md) for details.