Brandon Benvie (2013-08-22T16:22:01.000Z)
domenic at domenicdenicola.com (2013-08-29T19:17:28.229Z)
I'd make one small change to this: ```js if (Object.getPrototypeOf(this) === Promise.prototype && !(brand.has(this))) { ``` to ```js if (this instanceof Promise && !(brand.has(this))) { ``` or an alternative that I think is functionally identical, if you want to avoid instanceof: ```js if (Promise.prototype.isPrototypeOf(this) && !(brand.has(this))) { ``` This change would allow subclassing of Promise.