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
function getPathWithKey(path, key) { | |
return typeof path === 'string' ? `${path}[${key}]` : key; | |
} | |
/** | |
* Esta função converte um objeto plano com chaves aninhadas para | |
* o formato esperado pelo URLSearchParams, que é utilizado nas requisições | |
* que exige o "Content-Type": "application/x-www-form-urlencoded". | |
* | |
* Um objeto com estrutura |