aboutsummaryrefslogtreecommitdiffstats
path: root/util/promise.lua
Commit message (Expand)AuthorAgeFilesLines
* util: Prefix module imports with prosody namespaceKim Alvefur2023-03-171-1/+1
* util.promise: Remove line that was supposed to be removed in eb9814372c54Matthew Wild2022-10-071-1/+0
* util.promise: Remove some redundant checks, add tests confirming redundancyMatthew Wild2022-10-071-4/+0
* compat: Remove handling of Lua 5.1 location of 'unpack' functionKim Alvefur2022-07-111-1/+1
* util.promise: Support delayed promise executionKim Alvefur2019-01-051-5/+12
* util.promise: Switch order of parameters to join()Matthew Wild2021-03-251-4/+2
* util.promise: all()/all_settled() pass through non-promise valuesMatthew Wild2021-03-251-22/+30
* util.promise: Add join() convenience methodMatthew Wild2021-03-251-0/+11
* util.promise: Add support for arbitrary keys in all()/all_settled()Matthew Wild2021-03-251-15/+27
* Merge 0.11->trunkMatthew Wild2020-11-231-1/+1
|\
| * util.promise: Use xpcall() for promise function to preserve tracebacksMatthew Wild2020-11-231-1/+1
* | util.promise: Add all_settled, which follows semantics of allSettled from ES2020Matthew Wild2020-06-081-0/+22
* | util.promise: Remove references to callbacks after settling promiseKim Alvefur2018-12-301-0/+3
|/
* Many things: switch from hacky multi-arg xpcall implementations to a standard...Matthew Wild2018-10-261-0/+2
* util.promise: Switch from pcall to xpcall to get tracebacks on exceptionsMatthew Wild2018-10-261-1/+1
* util.promise: Remove the non-standard ability to pass a promise to reject()Matthew Wild2018-10-261-3/+1
* util.promise: Fix missing parametersMatthew Wild2018-10-251-2/+2
* util.promise: Ensure chained promises always receive a value/rejection even i...Matthew Wild2018-10-251-22/+23
* util.promise: Export is_promise()Matthew Wild2018-10-251-0/+1
* util.promise: Remove debug print and assertMatthew Wild2018-10-251-1/+0
* util.promise: Add promise.try()Matthew Wild2018-10-181-0/+6
* util.promise: Add a string representationKim Alvefur2018-10-181-0/+4
* util.promise: Add promise:finally()Matthew Wild2018-10-181-0/+6
* util.promise: Some code relocationMatthew Wild2018-10-181-23/+23
* util.promise: Also support automatic resolution by returning a promise from a...Matthew Wild2018-10-181-1/+3
* util.promise: Fix promise.reject() to return a rejected promise, and fix bugg...Matthew Wild2018-10-181-1/+1
* util.promise: ES6-like API for promisesMatthew Wild2018-10-101-0/+133