Files
Lab4/32/node_modules/handlebars/lib/handlebars/helpers/lookup.js
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03:00

10 lines
253 B
JavaScript

export default function(instance) {
instance.registerHelper('lookup', function(obj, field, options) {
if (!obj) {
// Note for 5.0: Change to "obj == null" in 5.0
return obj;
}
return options.lookupProperty(obj, field);
});
}