UNPKG

element-plus

Version:

A Component Library for Vue3.0

7 lines (5 loc) 194 B
const cubic = (value) => Math.pow(value, 3); const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2; export { cubic, easeInOutCubic };