1
0
mirror of https://github.com/Ale32bit-CC/Node.lua synced 2025-07-03 10:32:54 +00:00

Node is now included in all required modules (_ENV)

This commit is contained in:
Alessandro 2019-02-08 21:27:51 +01:00 committed by GitHub
parent 3869ced4ba
commit 30c521abde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,7 +301,7 @@ local function status()
end end
return { local node = {
on = on, on = on,
removeListener = removeListener, removeListener = removeListener,
setInterval = setInterval, setInterval = setInterval,
@ -312,3 +312,7 @@ return {
promise = promise, promise = promise,
init = init, init = init,
} }
_ENV.node = node
return node