Appearance
logicNot
Category
Export Size
67 B
Package
@reause/math Last Changed
5 days ago
Related
NOT condition for values
Demo
Usage
tsx
import { logicNot } from '@reause/math'
const notTrue = logicNot(true) // false — re-evaluated on every call
const notZero = logicNot(0) // trueType Declarations
ts
export function logicNot(v: any): boolean