ifc-expressions
Version:
Parsing and evaluation of IFC expressions
12 lines (11 loc) • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveLocalizedText = void 0;
function resolveLocalizedText(text, localizer) {
if (!text) {
return undefined;
}
return localizer ? localizer.t(text.key, text.fallback) : text.fallback;
}
exports.resolveLocalizedText = resolveLocalizedText;
//# sourceMappingURL=Documentation.js.map