1module.exports = { 2 trueFunc: function trueFunc(){ 3 return true; 4 }, 5 falseFunc: function falseFunc(){ 6 return false; 7 } 8}; 9