1.0.1 • Published 8 years ago

@f/create-element v1.0.1

Weekly downloads
8
License
MIT
Repository
github
Last release
8 years ago

create-element

Build status Git tag NPM version Code style

Micro utility for creating DOM elements (svg or regular).

Installation

$ npm install @f/create-element

Usage

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