diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-08-06 22:54:20 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-08-06 22:54:20 +0200 |
commit | 2615778348a16ac83b7afd9e86f08feda98da1df (patch) | |
tree | 23a4591f36582fe1df813b37d39728a21782af88 /promises.lua | |
parent | cb1dea66c40d19262967558c59a335931d8e5e85 (diff) | |
download | lua_async-2615778348a16ac83b7afd9e86f08feda98da1df.tar.xz |
Port to Lua 5.3.3
Diffstat (limited to 'promises.lua')
-rw-r--r-- | promises.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/promises.lua b/promises.lua index 97cd20e..0ab61a6 100644 --- a/promises.lua +++ b/promises.lua @@ -1,3 +1,4 @@ +local unpack = unpack or table.unpack local PromisePrototype = {} function PromisePrototype:__run_handler(func, ...) |