- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
10 lines
335 B
JavaScript
10 lines
335 B
JavaScript
import { cubicBezier } from './cubic-bezier.mjs';
|
|
import { mirrorEasing } from './modifiers/mirror.mjs';
|
|
import { reverseEasing } from './modifiers/reverse.mjs';
|
|
|
|
const backOut = cubicBezier(0.33, 1.53, 0.69, 0.99);
|
|
const backIn = reverseEasing(backOut);
|
|
const backInOut = mirrorEasing(backIn);
|
|
|
|
export { backIn, backInOut, backOut };
|