Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class ExportFile {
- constructor(content) {
- this.elementReaders = {
- 'p': async function (element, c, attr) {
- return;
- },
- 'table': async function (element, c, attr) {
- const obj = parseInt(this._getStylesToJSON()),
- return new Table(obj);
- }
- };
- }
- _getStylesToJSON(){
- return
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement