ethers.js/lib.esm/wordlists/wordlist.js

42 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-09-05 23:57:11 +03:00
import { defineProperties } from "../utils/index.js";
2022-11-30 23:44:23 +03:00
/**
* A Wordlist represents a collection of language-specific
2023-02-13 06:14:26 +03:00
* words used to encode and devoce [[link-bip-39]] encoded data
2022-11-30 23:44:23 +03:00
* by mapping words to 11-bit values and vice versa.
*/
2022-09-05 23:57:11 +03:00
export class Wordlist {
locale;
2022-11-30 23:44:23 +03:00
/**
* Creates a new Wordlist instance.
*
* Sub-classes MUST call this if they provide their own constructor,
* passing in the locale string of the language.
*
* Generally there is no need to create instances of a Wordlist,
* since each language-specific Wordlist creates an instance and
* there is no state kept internally, so they are safe to share.
*/
2022-09-05 23:57:11 +03:00
constructor(locale) {
defineProperties(this, { locale });
}
2022-11-30 23:44:23 +03:00
/**
* Sub-classes may override this to provide a language-specific
* method for spliting %%phrase%% into individual words.
*
* By default, %%phrase%% is split using any sequences of
* white-space as defined by regular expressions (i.e. ``/\s+/``).
*/
split(phrase) {
return phrase.toLowerCase().split(/\s+/g);
2022-09-05 23:57:11 +03:00
}
2022-11-30 23:44:23 +03:00
/**
* Sub-classes may override this to provider a language-specific
* method for joining %%words%% into a phrase.
*
* By default, %%words%% are joined by a single space.
*/
2022-09-05 23:57:11 +03:00
join(words) {
return words.join(" ");
}
}
//# sourceMappingURL=wordlist.js.map