npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fd-velem

1.0.0

@schtoeffel

npmHomeRepoSnykSocket
Downloads:9
$ npm install fd-velem
DailyWeeklyMonthlyYearly

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.