1'use strict'; 2 3// A module may export one or more methods. 4 5function foo() { 6} 7 8 9module.exports = { 10 foo 11}; 12