prepend DOM element in a functional way.
npm install fd-prepend --save
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.
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.