UNPKG

arr-helper-functions

Version:

Misc. functions for finding elements in arrays, sorting, and more

11 lines (10 loc) 179 B
/** * Negates a condition * * @export * @param {boolean} condition * @return {boolean} */ export function not(condition: boolean): boolean { return condition === false; }