fp-dom / fd-prepend

prepend DOM element in a functional way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fd-prepend

Build Status npm version

prepend DOM element in a functional way.

Installation

npm install fd-prepend --save

Usage

let prepend = require('fd-prepend');
let elem = require('fd-elem');
let prependtoBody = prepend(document.body);

let p = elem('p', 'No, I am');

prependtoBody(p);

assert.equal(document.body.firstChild.innerText, 'No, I am'); // true.

API

prepend :: parent -> child

A curried function that takes in:

  • parent -> DOM element to which the child must be prepended.

  • child -> DOM element that needs to be prepended.

About

prepend DOM element in a functional way.

License:MIT License


Languages

Language:JavaScript 100.0%