gamekit-utils
Version:
Minimal, fast and useful utilities for randomness, array manipulation and math — built for games, UI logic and generative design.
11 lines (10 loc) • 321 B
TypeScript
export * from './array/random';
export * from './array/shuffle';
export * from "./array/pickN";
export * from './math/chance';
export * from './math/clamp';
export * from './math/lerp';
export * from './math/normalize';
export * from './grid/create2D';
export * from './grid/getNeighbors';
export * from './cycle/pulse';