8 lines
125 B
JavaScript
Raw Permalink Normal View History

module.exports = {
trueFunc: function trueFunc(){
return true;
},
falseFunc: function falseFunc(){
return false;
}
};