typocomath/src/numbers/predicate.ts

3 lines
108 B
TypeScript

export const isReal = (a: number) : boolean => true
export const isSquare = (a: number) : boolean => a >= 0