Bundled output for commit 638d72481c [skip ci]

This commit is contained in:
Gandalf-the-Bot 2018-11-14 20:50:41 +00:00
parent 638d72481c
commit 8f7d85b0c9
3 changed files with 6 additions and 3 deletions

View file

@ -110,7 +110,10 @@ hyperscript.trust = function(html) {
hyperscript.fragment = function(attrs1, children0) {
return Vnode("[", attrs1.key, attrs1, Vnode.normalizeChildren(children0), undefined, undefined)
}
var m = hyperscript
var m = function m() { return hyperscript.apply(this, arguments) }
m.m = hyperscript
m.trust = hyperscript.trust
m.fragment = hyperscript.fragment
/** @constructor */
var PromisePolyfill = function(executor) {
if (!(this instanceof PromisePolyfill)) throw new Error("Promise must be called with `new`")