UNPKG

@mapcss/preset-svg

Version:
12 lines (11 loc) 188 B
/** Whatever argument is odd or not * ```ts * isOdd(1) // true * isOdd(0) // false * ``` * @beta */ function isOdd(value) { return Math.abs(value) % 2 === 1; } export { isOdd };