Advertisement
Guest User

Untitled

a guest
May 10th, 2023
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class ExportFile {
  2. constructor(content) {
  3. this.elementReaders = {
  4. 'p': async function (element, c, attr) {
  5. return;
  6. },
  7. 'table': async function (element, c, attr) {
  8. const obj = parseInt(this._getStylesToJSON()),
  9. return new Table(obj);
  10. }
  11. };
  12. }
  13.  
  14. _getStylesToJSON(){
  15. return
  16. }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement