We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd802a commit 27c73a3Copy full SHA for 27c73a3
packages/animation/src/formatBezier.js
@@ -1,6 +1,6 @@
1
export default function formatBezier(easing) {
2
if (easing) {
3
let m = easing.match(/cubicBezier\((.+),(.+),(.+),(.+)\)/);
4
- return m && [m[1], m[4], m[3], m[4]];
+ return m && [m[1], m[2], m[3], m[4]];
5
}
6
0 commit comments