SolalDR/animate

View on GitHub
src/Easing.ts

Summary

Maintainability
A
0 mins
Test Coverage

Easing has 25 functions (exceeds 20 allowed). Consider refactoring.
Wontfix

export const Easing: EasingCollection = {
  linear: function (t) { return t },
  easeInQuad: function (t) { return t*t },
  easeOutQuad: function (t) { return t*(2-t) },
  easeInOutQuad: function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t },
Severity: Minor
Found in src/Easing.ts - About 2 hrs to fix

    There are no issues that match your filters.

    Category
    Status