UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

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