Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 546 Bytes

README.markdown

File metadata and controls

25 lines (14 loc) · 546 Bytes

fd-velem

Build Status npm version

Create virtual dom elements FP-style!

Installation

npm install fd-velem --save

Usage

import velem from 'fd-velem';

var div = velem('div')({})(['Hello World']);

API

velem :: (tagName, content)

  • tagName -> string: type of element to be created.

  • content -> string: Contents of the newly created element.