hojas/node_modules/speech-rule-engine/mjs/common/file_util.js

10 lines
304 B
JavaScript
Raw Permalink Normal View History

2026-05-14 10:56:04 +02:00
import { SystemExternal } from './system_external.js';
export function makePath(path) {
return path.match('/$') ? path : path + '/';
}
export function localePath(locale, ext = 'json') {
return (makePath(SystemExternal.jsonPath) +
locale +
(ext.match(/^\./) ? ext : '.' + ext));
}