32 lines
297 B
JavaScript
32 lines
297 B
JavaScript
|
|
|
|
class Utils {
|
|
getHello() {
|
|
console.log("测试");
|
|
|
|
}
|
|
}
|
|
|
|
function GetName() {
|
|
console.log("侧按时");
|
|
|
|
}
|
|
|
|
module.exports = new Utils()
|
|
|
|
|
|
// module.exports = new Utils();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exports.name = "zhangsan";
|
|
|
|
|
|
|
|
// module.exports = function() {
|
|
// // ...
|
|
// }
|