UNPKG

decimal128

Version:

Partial implementation of IEEE 754 Decimal128 decimal floating-point numbers

8 lines (5 loc) 150 B
import { Decimal128 } from "../src/Decimal128.mjs"; function floor(d: Decimal128): Decimal128 { return d.round(0, "floor"); } export { floor };