aboutsummaryrefslogtreecommitdiff
path: root/tests/lib-hello.js.mod
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib-hello.js.mod')
-rw-r--r--tests/lib-hello.js.mod8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/lib-hello.js.mod b/tests/lib-hello.js.mod
deleted file mode 100644
index d4c02e1..0000000
--- a/tests/lib-hello.js.mod
+++ /dev/null
@@ -1,8 +0,0 @@
-const lua = require('../src/lua.js');
-
-module.exports = {
- "hello": function(L) {
- lua.lua_pushliteral(L, "hello from js lib");
- return 1;
- }
-};