UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

7 lines (6 loc) 167 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function quintOut(t) { return --t * t * t * t * t + 1; } exports.quintOut = quintOut;