UNPKG

animare

Version:

Advanced animation library for modern JavaScript.

3 lines 242 B
export function isObjectVector(vector){return typeof vector==='object'&&!Array.isArray(vector);}/** * - Returns a number between `0` and `1` */export function normalizePercentage(percentage){return percentage<0?0:percentage>1?1:percentage;}