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