Files
ihrm/node_modules/boolbase/index.js

8 lines
132 B
JavaScript
Raw Normal View History

2023-05-10 15:06:57 +05:30
module.exports = {
trueFunc: function trueFunc(){
return true;
},
falseFunc: function falseFunc(){
return false;
}
};