animation.js 336 B

123456789101112
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. const cubic = (value) => {
  4. return value ** 3;
  5. };
  6. const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
  7. exports.cubic = cubic;
  8. exports.easeInOutCubic = easeInOutCubic;
  9. //# sourceMappingURL=animation.js.map