7 lines
255 B
JavaScript
7 lines
255 B
JavaScript
const { helloWorld1 } = require("./helloWorld1");
|
|
const { helloWorld2 } = require("./helloWorld2");
|
|
const { helloWorld3 } = require("./helloWorld3");
|
|
|
|
exports.helloWorld1 = helloWorld1;
|
|
exports.helloWorld2 = helloWorld2;
|
|
exports.helloWorld3 = helloWorld3; |