typocomath/src/numbers/predicate.ts

3 lines
108 B
TypeScript
Raw Normal View History

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