classjs
classjs copied to clipboard
issues with instance of
instanceof does not refer to its original instance:
var Animal = new Class(); // should not be instanceof class
var Human = new Class(Animal); // should be instanceof Animal
this might not be solvable...