1.0.0 • Published 5 years ago
text-to-ipa v1.0.0
node-text-to-ipa
https://www.npmjs.com/package/text-to-ipa
NPM port of the amazing text-to-ipa project.
Use
const TextToIPA = require('text-to-ipa');
TextToIPA.lookup('word'); // > wɚˈd
If your lookup call needs to respond immediately, you can explicitly load the built-in dictionary
const TextToIPA = require('text-to-ipa');
TextToIPA.loadDict(); // blocking load
TextToIPA.lookup('word'); // > wɚˈd
The dictionary is loaded once only.