UNPKG

xcraft-jsonviz

Version:

A Node.js module that converts JSON to DOT language

21 lines (17 loc) 278 B
"use strict"; function HTML(content) { if(this instanceof HTML) { this.content = content || ""; } else { return new HTML(content); } } HTML.prototype.toString = function() { return this.content; }; exports = module.exports = HTML;