Booleanator adds new types of booleans, such as maybe, probably, and probably not
const bool = require("booleanator");
const iDieToday = bool.probnot; //Probably not
const iDieBeforeAge110 = bool.prob; //Probably
const iLikePancakes = bool.maybe; //Probably
if (iDieToday == bool.probnot) {
console.log("I probably will not die today!!!");
} // Will log "I probably will not die today!!!" in the console