This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instructions: | |
// npm install --save d3 jsdom | |
const fs = require('fs'); | |
const d3 = import('d3'); | |
const jsdom = require('jsdom'); | |
const { JSDOM } = jsdom; | |
async function main() { | |
const fakeDom = new JSDOM('<!DOCTYPE html><html><body></body></html>'); |