UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 283 B
/** * Branchless fast integer Absolute value function. * Same as Math.abs(x) but for integer values only. * Only valid for integers up to and including 32 bit. * @param {number} x * @return {number} */ export function iabs(x: number): number; //# sourceMappingURL=iabs.d.ts.map