mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.promise: Add a string representation
This commit is contained in:
parent
681b25e427
commit
dd2f749996
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
local promise_methods = {};
|
||||
local promise_mt = { __name = "promise", __index = promise_methods };
|
||||
|
||||
function promise_mt:__tostring()
|
||||
return "promise (" .. (self._state or "invalid") .. ")";
|
||||
end
|
||||
|
||||
local function is_promise(o)
|
||||
local mt = getmetatable(o);
|
||||
return mt == promise_mt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue