UNPKG

find-partial-anagrams

Version:

Takes a set of letters and returns all the words in a given word list that can be made using all or a subset of those letters.

7 lines (6 loc) 128 B
/** * A list of English words up to 16 letters long. * @module */ declare const _default: string[]; export default _default;