Joshua Shaffer
Joshua Shaffer
I do not think that it is wise to extract `Arbitrary` it self into a library. `Arbitrary` is concerned with both random generation and shrinking. Shrinking does not seem like...
I was able to do this by converting IPA to espeak's phoneme mnemonics with the [lexconvert.py script](https://github.com/ssb22/lexconvert). For example: ```sh lexconvert.py --phones2phones unicode-ipa espeak "təˈmeɪtoʊ" | espeak lexconvert.py --phones2phones unicode-ipa...
TypeScript has [type-only imports](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#type-only-imports-and-export) that are always fully erased so that there is no remnant of them at runtime. You should be able to get the same effect as a...