Module Library

// test2.js

exports.some_function = function() { 
    g_cheat.notify('hi') 
}
// test.js

var test2 = require("test2")

test2.some_function()

Last updated