From 59e549150996ec4c8a049f893dad9ec95a4677e9 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Mon, 13 Feb 2017 14:37:01 +0100 Subject: Better use of module to avoid cyclic dependencies issues --- src/llimit.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/llimit.js') diff --git a/src/llimit.js b/src/llimit.js index 2cbfbb6..9c02eb0 100644 --- a/src/llimit.js +++ b/src/llimit.js @@ -1,8 +1,6 @@ /*jshint esversion: 6 */ "use strict"; -module.exports = { - LUAI_MAXCCALLS: 200, - LUA_MAXINTEGER: 2147483647, - LUA_MININTEGER: -2147483647 -}; \ No newline at end of file +module.exports.LUAI_MAXCCALLS = 200; +module.exports.LUA_MAXINTEGER = 2147483647; +module.exports.LUA_MININTEGER = -2147483647; \ No newline at end of file -- cgit v1.2.3-54-g00ecf