01:15
<arai>
is there any Web API that utilizes "then" property in Promise handling? I'm wondering if it's only user code that can have "then" property in random object
01:19
<arai>
so far I found DOMRequest in tree, but I don't find the spec for it
08:52
<evilpie>
arai: Do you mean "then" specifically? Or APIs that use user provided promises?
10:50
<arai>
evilpie: "then" specifically, to signal that it's then-able
14:45
<Domenic>
I don't know of any such web APIs.
17:40
<arai>
good to know :) thanks!
18:11
<TabAtkins>
Yeah, there's no APIs that specifically produce thenables rather than just vending Promises. (Because the existence of thenables is a compatibility hack, not something you ever want to do on purpose for any reason.)
18:41
<arai>
I see, thank you :D