aboutsummaryrefslogtreecommitdiff
path: root/extension/lib/polyfill-react.js
blob: f30ba7c64e06920ce90ba3cdacec054e1cfa6f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict";
let React = {
    createElement: function (tag, props, ...children) {
        let e = document.createElement(tag);
        for (let k in props) {
            e.setAttribute(k, props[k]);
        }
        for (let child of children) {
            if ("string" === typeof child || "number" == typeof child) {
                child = document.createTextNode(child);
            }
            e.appendChild(child);
        }
        return e;
    }
};