Global Exports
module.exports = {
test_function: function test_function() {
console.log("Test Works!!!!")
}
}const test_plugin = require("bit/plugin/test-plugin");
test_plugin.test_function();
// Outputs "Test Works!!!!"Last updated
Was this helpful?