'; const X_LOGO_CLIENTE = "https://posbqb.ufv.br/imagens/logo/logo.png"; const CACHEX = true; var xdata = {}; var updateIntervalId; function setXData(chave, valor) { xdata[chave] = valor; } function unSetXData(chave) { if (xdata.hasOwnProperty(chave)) { delete xdata[chave]; } else { console.log("Chave inválida!"); } } function getXData(chave) { if (xdata.hasOwnProperty(chave)) { return xdata[chave]; } else { return false; } }
Carregando...