UNPKG

boolbase

Version:

two functions: One that returns true, one that returns false

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