UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

8 lines (7 loc) 186 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function backIn(t) { const s = 1.70158; return t * t * ((s + 1) * t - s); } exports.backIn = backIn;