function getAttribute()

in lambda/render.js [80:87]


  function getAttribute(item, attribute) {
    if (!(attribute in item)) {
      return '';
    }

    const type = Object.keys(item[attribute]);
    return item[attribute][type];
  }