blob: 2c60ec09d6fa0a46d2315066d72a620f9ed35139 [file] [log] [blame]
/* global svgNS */
/* exported createNS */
function createNS(type) {
// return {appendChild:function(){},setAttribute:function(){},style:{}}
return document.createElementNS(svgNS, type);
}