mirrored fromhttps://github.com/cloudflare/InstantPlugin
https://forge.edgedefence.com/cloudflare/InstantPlugin.git
Download ZIP
7lines · modecode
export default function createElement(type = "div", properties = {}) {
const element = document.createElement(type)
Object.assign(element, properties)
return element
}