UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

7 lines (6 loc) 158 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function quintIn(t) { return t * t * t * t * t; } exports.quintIn = quintIn;