19 lines
260 B
JavaScript
19 lines
260 B
JavaScript
// class Utils {
|
|
// test () {
|
|
// console.log("test function");
|
|
// }
|
|
// }
|
|
|
|
function test () {
|
|
console.log("ddddd");
|
|
}
|
|
|
|
module.exports = { test }
|
|
|
|
// exports.Utils = {
|
|
// test () {
|
|
// console.log("test function");
|
|
// }
|
|
// };
|
|
|