/* exported getData */ 'use strict'; var getData = getData || function(id, clear = true) { let data = {}; // Read the JSON-formatted data from the DOM. (from https://mathiasbynens.be/notes/json-dom-csp) // To be use with: const element = document.getElementById(`${id}-data`); if (element) { try { data = JSON.parse(element.textContent); if (clear) { // Clear the element’s contents element.innerHTML = ''; } } catch (e) {} } return data; };