1.0.1 • Published 10 years ago
@f/create-element v1.0.1
create-element
Micro utility for creating DOM elements (svg or regular).
Installation
$ npm install @f/create-elementUsage
You can create regular elements (e.g. div, span), and you can create SVG elements (e.g. circle, tspan). The recognized svg elements are listed here.
var createElement = require('@f/create-element')
var div = createElement('div')
var circle = createElement('circle')API
createElement(tag)
tag- The name of the element you want to create
Returns: A DOM node of type tag created in the appropriate namespace.
License
MIT