anagram-test
v1.0.3
Published
Allows a user to enter a base word and a comparator word which will be used to see if the comparator is an anagram of the base word.
Downloads
3
Readme
Anagram
A small library that takes in a base word and a comparator word which will be used to see if the comparator is an anagram of the base word. An anagram is a direct word switch or word play, the result of rearranging the letters of a word or phrase to produce a new word or phrase.
Installation
npm install anagram
Usage
var anagram = require('anagram');
var anagramResponseObj = anagram.anagramTest('dogs', 'gods');
Output should be { message: 'Awesome, everything checks out, looks like you have an ANAGRAM!', isAnagram: true }
Tests
WIP
Contributing
WIP