时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
360 B

import {inBrowser} from './env'
class Dom {
appendChild() {}
removeChild() {}
querySelector() {}
addEventListener() {}
removeEventListener() {}
}
const dom = new Dom()
let mdDocument = dom
let mdBody = dom
mdDocument.body = mdBody
if (inBrowser) {
// mdDocument = window.document
// mdBody = document.body
}
export {mdDocument, mdBody, dom}