This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* @return Retorna a taxa anual da SELIC de acordo com a data passada (se não for passada nenhuma data retorna a taxa anual do dia de hoje). | |
* Fonte: https://www.bcb.gov.br/estabilidadefinanceira/selicdadosdiarios | |
**/ | |
function SELIC(dataConsulta = new Date()) { | |
var today = Utilities.formatDate(new Date(), "GMT+3", "dd/MM/yyyy"); | |
if (dataConsulta.length == 0) | |
dataConsulta = new Date() |