UNPKG
boolbase
Version:
latest (2.0.0)
2.0.0
1.0.0
two functions: One that returns true, one that returns false
github.com/fb55/boolbase
fb55/boolbase
boolbase
/
dist
/
index.js
7 lines
(6 loc)
•
98 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
trueFunc
(
) {
return
true
; }
export
function
falseFunc
(
) {
return
false
; }