FinalAngel/classjs

issues with instance of

Opened this issue · 0 comments

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...