Mark S. Miller (2013-08-22T03:32:41.000Z)
domenic at domenicdenicola.com (2013-08-29T19:15:10.322Z)
Correction to meta-summary. We got to this state of happy agreement by purposely postponing two issues: a) We encapsulated the question of "what is a thenable?" into an abstract isThenable(v) function which we have postponed defining. b) We have postponed pinning down what happens if one attempts to subclass Promise. Since the immediate issue is, what do we need to agree on to unblock DOM, I think we can continue to postpone #b for a while. However, we still need to settle #a asap. There are two approaches: compat-duck) Maintain compatibility with Promise/A+ and thus with libraries compatible with Promises/A+ and the clients of those libraries, grit our teeth (like we did for `__proto__`) and codify its duck typing of thenables, to whit: ```js function isThenable(o) { return o !== null && o !== void 0 && typeof o.then === 'function'; } ```` narrow-duck) Adopt some new mechanism, like a funny property name or unique symbol that must be made visible on all things that wish to be considered thenables. The intent is not to avoid duck typing entirely, but to avoid accidental collisions, especially with those who already have unrelated "then" methods. Aesthetically, I prefer narrow-duck, just like a prefer a language without `__proto__`. But for the same reason I pushed for `__proto__`, I feel I must push for compat-duck.