9 lines
291 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createLocale = void 0;
const lodash_1 = require("lodash");
function createLocale(locale, fallbackLocale) {
return (0, lodash_1.merge)({}, fallbackLocale, locale);
}
exports.createLocale = createLocale;