Appearance
Identifies if a number is odd.
import { isOdd } from 'tsu' isOdd(1) // true isOdd(2) // false
/** * @param n - The number. * @returns If the number is odd. */ function isOdd(n: number): boolean