UNPKG

html-document

Version:

Partial implementation of document, HTMLElement for node

12 lines (10 loc) 173 B
import Node from './Node'; /** * @class Doctype * @extends Node */ export default class Doctype extends Node { _toHTML() { return '<!DOCTYPE html>'; } }