mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-24 09:10:24 +00:00
8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
module.exports = {
|
|
trueFunc: function trueFunc(){
|
|
return true;
|
|
},
|
|
falseFunc: function falseFunc(){
|
|
return false;
|
|
}
|
|
};
|