@bingumd/js-utils-math
v0.1.0
Published
Simple javascript math utils.
Maintainers
Readme
@bingumd/js-utils-math
Simple javascript math utils.
Installation
Yarn
yarn add @bingumd/js-utils-mathNpm
yarn install @bingumd/js-utils-mathUsage
import { clamp, lerp, map, mod, norm } from '@bingumd/js-utils-math'
const clamp = clamp(5, 0, 10) // => 5
const lerp = lerp(0, 10, 0.5) // => 5
const map = map(5, 0, 10, 0, 100) // => 50
const mod = mod(-7, 3) // => 2
const norm = norm(5, 0, 10) // => 0.5