forked from lix-project/lix-website
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.fixLegacy = void 0;
|
|
function fixLegacy(opts) {
|
|
const { local, ...rest } = opts;
|
|
if (local && !rest.locale) {
|
|
rest.locale = local;
|
|
}
|
|
return rest;
|
|
}
|
|
exports.fixLegacy = fixLegacy;
|
|
//# sourceMappingURL=options.js.map
|