mocoolka-function
Version:
Function lib for function.
11 lines • 366 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Returns `true` if both arguments are `true`; `false` otherwise.
* @since v0.1.0
* @param a
* @param b
* @return the first argument if it is falsy, otherwise the second argument.
*/
var or = function (a, b) { return a || b; };
exports.default = or;
//# sourceMappingURL=or.js.map