function _instanceof(example,construct){
let E = example.__proto__;
let C = example.prototype;
while(true){
if(E == null){
return false;
}
if(E == C){
return true;
}
E = E.__proto__;
}
}