(base64Data)
| 323 | return zipFiles; |
| 324 | } |
| 325 | function getBase64Data(base64Data) { |
| 326 | let bytes = atob(base64Data); |
| 327 | let contentLength = bytes.length; |
| 328 | var contents = new Uint8Array(contentLength); |
| 329 | for (var i = 0; i < contentLength; i++) { |
| 330 | contents[i] = bytes.charCodeAt(i); |
| 331 | } |
| 332 | return contents; |
| 333 | } |
| 334 | function loadFile(pathPrefix, filename, callback) { |
| 335 | fetch(pathPrefix + filename, { method: 'GET' }).then(function(response) { |
| 336 | if (response.status === 200) { |
no outgoing calls
no test coverage detected