Skip to content

Commit

Permalink
Fix typo (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
pufferfish101007 authored Apr 14, 2021
1 parent 0d35a9f commit e1f1d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export let ease = {
t === 0 ? 0 : Math.pow(2, 10 * t - 10),
easeOutExpo: (t = req("number", "percentage")) =>
t === 1 ? 1 : 1 - Math.pow(2, -10 * t),
easeIntOutExpo: (t = req("number", "percentage")) =>
easeInOutExpo: (t = req("number", "percentage")) =>
t === 0
? 0
: t === 1
Expand Down

0 comments on commit e1f1d05

Please sign in to comment.