Yao
Results
1
comments of
Yao
```js function fakeInstanceOf (instance, parent) { if(! instance?.__proto__ || ! parent.prototype) return false; if( instance.__proto__ === parent.prototype ) return true; return fakeInstanceOf(instance, parent.prototype } ```