const myInstenceof = (child, supers) => {
let childProto = child.__proto__
while (true) {
if (childProto === supers.prototype) {
return true
}
if (childProto === null) {
return false;
}
return myInstenceof(childProto, supers)
}
}