aboutsummaryrefslogtreecommitdiff
path: root/src/lualib.js
blob: 1eff812ecfb6bc4158a59fa72a6f50223a519ffd (plain)
1
2
3
4
5
6
7
8
9
10
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;