instantiable-fastdom
v0.1.5
Published
Allow fastdom to be instantiable so you can clear groups of jobs.
Readme
instantiable-fastdom 
Allow fastdom to be instantiable so you can clear groups of jobs.
Code adapted from fruitmachine-fastdom.
Installation
npm install instantiable-fastdomExample
var Fastdom = require("instantiable-fastdom");
var fd1 = new Fastdom();
var fd2 = new Fastdom();
fd1.write(fn); // Never gets called
fd2.write(fn); // Gets called
fd1.clear();