Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function downloadFile(url, filename) {
  2. axios.get(url, { responseType: 'arraybuffer' }).then(res => {
  3. let data = btoa(new Uint8Array(res.data).reduce((data, byte) => data + String.fromCharCode(byte), ''))
  4. cep.fs.writeFile(filename, data, this.cep.encoding.Base64)
  5. })
  6. }
Add Comment
Please, Sign In to add comment