element-plus
Version:
A Component Library for Vue 3
13 lines (9 loc) • 336 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
const cubic = (value) => {
return value ** 3;
};
const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
exports.cubic = cubic;
exports.easeInOutCubic = easeInOutCubic;
//# sourceMappingURL=animation.js.map
;