| 12345678910111213 |
- // https://docs.google.com/spreadsheets/d/1FoYdyEraEQuWofzbYCDPKN7EdKgS_2ZrsDrOA8scgwQ
- const DIAGRAMS_NET_LANG_MAP = {
- ja_JP: 'ja',
- zh_CN: 'zh',
- };
- const getDiagramsNetLangCode = (lang) => {
- return DIAGRAMS_NET_LANG_MAP[lang];
- };
- module.exports = {
- getDiagramsNetLangCode,
- };
|