1. const _instanceof = (target, Fn) => {
    2. let proto = target.__proto__
    3. let prototype = Fn.prototype
    4. while(true) {
    5. if(proto === prototype) return true;
    6. if(!proto) return false;
    7. proto = proto.__proto__
    8. }
    9. }