blob: 0ab0c7886e02749c5269839c76331352552bed14 [file] [log] [blame]
/* exported createTag */
function createTag(type) {
// return {appendChild:function(){},setAttribute:function(){},style:{}}
return document.createElement(type);
}