UNPKG

civ7-modding-tools

Version:
6 lines (4 loc) 215 B
import * as lodash from 'lodash'; export const locale = (prefix: string | null | undefined, variable: string): string => { return `LOC_${prefix || ''}_${lodash.snakeCase(variable).toLocaleUpperCase()}`; }