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.
npm i unscramble_word
import unscrambleWord from "unscramble_word";
const unscrambleWord = require("unscramble_word");
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);
['mountain']