()
| 4 | const LINE_BREAK = '\r\n'; |
| 5 | |
| 6 | async function requestCvmFile() { |
| 7 | const fileUrl = |
| 8 | 'https://dados.cvm.gov.br/dados/INTERMED/CAD/DADOS/cad_intermed.zip'; |
| 9 | return axios.get(fileUrl, { |
| 10 | responseType: 'arraybuffer', |
| 11 | }); |
| 12 | } |
| 13 | |
| 14 | function getIntermediatorsFromZip(data) { |
| 15 | const zip = new AdmZip(data); |