vandvassily

Results 1 comments of vandvassily

```js function fakeInstanceOf(left, right) { if (!left) return false; if (typeof left !== 'object' && typeof left !== 'function') return false; let proto = left.__proto__; const prototype = right.prototype while...