Files
everyone-can-use-english/1000-hours/.vitepress/theme/data/index.js
an-lee dab09ea644 Package: add 1000-hours repo in workspace (#337)
* add 1000-hours repo in workspace

* update README
2024-02-20 15:40:18 +08:00

13 lines
275 B
JavaScript

function getAudioPath(word, accent) {
word = word.toLowerCase();
accent = accent || 'us';
const item = mapping[word];
if (item && item[accent] && item[accent].length !== 0) {
return `/vendor/audios/${item[accent][0]}`
}
return '';
}
export {
getAudioPath
}