JSFiddle - React, Tailwind, and code Playground
http://stackoverflow.com/questions/7539148/how-do-i-inherit-functions
JavaScript
function Counter(start) {
var counter = function() {
return start++;
};
counter.constructor = Counter;
counter.prototype = Counter.prototype;
return counter;
};
var c = new Counter(1);
alert(c instanceof Counter);
//test