UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines (8 loc) 155 B
/** * 2 raised to the power of the parameter * @param {number} v * @returns {number} */ export function exp2(v) { return Math.pow(2, v); }