UNPKG

mocoolka-function

Version:

Function lib for function.

10 lines (9 loc) 271 B
/** * 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. */ declare const or: (a: any, b: any) => boolean; export default or;