-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
14 lines (13 loc) · 812 Bytes
/
index.ts
File metadata and controls
14 lines (13 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import add from "./add.js";
import subtract from "./subtract.js";
import multiply from "./multiply.js";
import divide from "./divide.js";
import abs from "./abs.js";
import sqrt from "./sqrt.js";
import compare, { isEqual, isGreaterThan, isLessThan, min, max } from "./compare.js";
import { floor, ceil, truncate, round, roundToPrecision } from "./rounding.js";
import { pow, nthRoot } from "./power.js";
import { mod, gcd, lcm, remainder } from "./modular.js";
import { factorial, combination, permutation } from "./factorial.js";
import * as utils from "./utils.js";
export { add, subtract, multiply, divide, abs, sqrt, compare, isEqual, isGreaterThan, isLessThan, min, max, floor, ceil, truncate, round, roundToPrecision, pow, nthRoot, mod, gcd, lcm, remainder, factorial, combination, permutation, utils };