mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 07:54:01 +09:00
9 lines
180 B
JavaScript
9 lines
180 B
JavaScript
"use strict"
|
|
|
|
var Vnode = require("./vnode")
|
|
|
|
module.exports = function(html) {
|
|
if (html == null) html = ""
|
|
return Vnode("<", undefined, undefined, html, undefined, undefined)
|
|
}
|