mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
|
import fs from 'fs'
|
||
|
import path from 'path'
|
||
|
|
||
|
export const languages = fs.readdirSync(path.resolve(__dirname, '../crowdin'))
|
||
|
|
||
|
export const ensureLang = (lang: string) => `/${lang}`
|