@n0safe/indirectus
Version:
Directus Tools CLI.
15 lines • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.falsey = falsey;
function falsey(context, condition, falsey, truthy) {
if (!condition) {
return falsey;
}
else {
if (typeof truthy != "undefined") {
return truthy;
}
}
return condition;
}
//# sourceMappingURL=falsey.js.map