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
1 changed files with 5 additions and 1 deletions

View File

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