Closed
Description
import jsdom from 'jsdom';
import Readability from 'mozilla-readability';
const url = 'https://www.sec.gov/Archives/edgar/data/1794515/000162828020002344/zoominfos-1.htm';
jsdom.JSDOM.fromURL(url, {
resources: new jsdom.ResourceLoader()
}).then(doc => {
const reader = new Readability(doc.window.document);
return reader.parse(); // this freezes @ 100% CPU
});
Node.js 12
jsdom 16.1.0