diff options
Diffstat (limited to 'src/lualib.js')
-rw-r--r-- | src/lualib.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lualib.js b/src/lualib.js new file mode 100644 index 0000000..1eff812 --- /dev/null +++ b/src/lualib.js @@ -0,0 +1,11 @@ +/*jshint esversion: 6 */ +"use strict"; + +const assert = require('assert'); +const lua = require('./lua.js'); + + +const LUA_VERSUFFIX = "_" + lua.LUA_VERSION_MAJOR + "_" + lua.LUA_VERSION_MINOR; + + +module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX;
\ No newline at end of file |