npm_unscramble66
v1.0.6
Published
This is a word unscrambler, it can be used to unscramble any of the word out their. You just have to pass your word to the function and it will return you all the matching word.
Downloads
9
Maintainers
Readme
unscramble_word
unscramble_word
unscramble_word is a library which is used to convert jumbled word or scrambled word or meaningless word in to a proper meaningfull word.
I know its went up from your brian. So here is a another explaination like in kindergarden teacher gives us a jumbled word and we have to rearrange the word and then convert it to a meaningfull word. Got It ?
Example:-
- sdmiuo -> sodium.
- gdo -> god or dog.
- motainun -> mountain.
- chkenic -> chicken.
- wpoer -> proper.
Installation
npm i unscramble_word
For ES Module
import unscrambleWord from "unscramble_word";
For Node JS
const unscrambleWord = require("unscramble_word");
Documentation
import unscrambleWord from "unscramble_word"; // For ES MODULE
or
const unscrambleWord = require("unscramble_word"); // For Node JS
const scrambledWord = "muntonian";
const unscrambledWord = unscrambleWord(scrambledWord);
console.log(unscrambledWord);
Output
['mountain']