Christiano Domingues
Results
1
comments of
Christiano Domingues
this worked for me, using epub.js with angular (data.content is part of json response): ``` this.book = ePub(data.content, {encoding: 'base64'}); const b64 = data.content.replace('data:application/epub+zip;base64,', ''); this.book.open(b64); ``` hope it helps...