es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
15 lines • 669 B
TypeScript
import { clamp } from "./clamp.js";
import { inRange } from "./inRange.js";
import { mean } from "./mean.js";
import { meanBy } from "./meanBy.js";
import { median } from "./median.js";
import { medianBy } from "./medianBy.js";
import { percentile } from "./percentile.js";
import { random } from "./random.js";
import { randomInt } from "./randomInt.js";
import { range } from "./range.js";
import { rangeRight } from "./rangeRight.js";
import { round } from "./round.js";
import { sum } from "./sum.js";
import { sumBy } from "./sumBy.js";
export { clamp, inRange, mean, meanBy, median, medianBy, percentile, random, randomInt, range, rangeRight, round, sum, sumBy };