UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

12 lines (10 loc) 250 B
define(function(){ /** * Linear interpolation. * IMPORTANT:will return `Infinity` if numbers overflow Number.MAX_VALUE */ function lerp(ratio, start, end){ return start + (end - start) * ratio; } return lerp; });