summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/helpers/lookup.js
blob: a52e77a04fef6e68a02789750131e32c70b39b27 (plain)
1
2
3
4
5
export default function(instance) {
  instance.registerHelper('lookup', function(obj, field) {
    return obj && obj[field];
  });
}