UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

15 lines 683 B
import { clamp } from "./clamp.mjs"; import { inRange } from "./inRange.mjs"; import { mean } from "./mean.mjs"; import { meanBy } from "./meanBy.mjs"; import { median } from "./median.mjs"; import { medianBy } from "./medianBy.mjs"; import { percentile } from "./percentile.mjs"; import { random } from "./random.mjs"; import { randomInt } from "./randomInt.mjs"; import { range } from "./range.mjs"; import { rangeRight } from "./rangeRight.mjs"; import { round } from "./round.mjs"; import { sum } from "./sum.mjs"; import { sumBy } from "./sumBy.mjs"; export { clamp, inRange, mean, meanBy, median, medianBy, percentile, random, randomInt, range, rangeRight, round, sum, sumBy };