classjs icon indicating copy to clipboard operation
classjs copied to clipboard

issues with instance of

Open FinalAngel opened this issue 12 years ago • 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...

FinalAngel avatar Apr 05 '13 18:04 FinalAngel