This commit is contained in:
Sarimoko 2022-02-14 14:06:02 -08:00
parent ffc92cf962
commit 0367538348
2 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const client = new tmi.Client({
client.connect();
import test from `./test.js`;
import test = require(`./test.js`);
//import { test } from "./ttv.js";
//test();

5
node/test.js Normal file
View File

@ -0,0 +1,5 @@
// JavaScript Document
function test(){
console.log('Testing 1 2 3');
}
module.exports = { test };