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

Made by Antonio Ramirez

fd-elem

1.0.0

@hemanth

npmHomeRepoSnykSocket
Downloads:9
$ npm install fd-elem
DailyWeeklyMonthlyYearly

fd-elem

Build Status npm version

Create DOM elements FP-style!

Installation

npm install fd-elem --save

Usage

import elem from 'fd-elem';

let div = elem('div');

let greetDiv = div('Hello FD!');

document.body.appenChild(greetDiv);

// it's curried out of the box, you could also do:

elem('div', 'div's content');

API

elem :: (tagName, content)

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

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