Package Exports
- anagram-solver
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (anagram-solver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Anagram Solver
Find all anagrams in a dictionary of a given set of characters (fast).
Installation
npm i anagram-solver
Usage
Returns a promise that resolves to an array of strings.
Using the default dictionary
const findAnagrams = require("anagram-solver");
const anagrams = await findAnagrams("spolo");
console.log(anagrams);
// ["loops", "polos", "pools", "sloop", "spool"]Using another dictionary (JSON format)
findAnagrams(`spolo`, `https://link.to/my/dictionary.json`);