epiphany/node_modules/boolbase/index.js
2023-12-09 22:48:07 -08:00

8 lines
No EOL
125 B
JavaScript

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