Skip to content

Commit

Permalink
Merge pull request #914 from wagich/fix-ie11
Browse files Browse the repository at this point in the history
Minimal fix for #885: Animations don't work in IE11
  • Loading branch information
Rycochet committed Aug 2, 2020
1 parent 1442466 commit 450306a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/velocity/src/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function defineProperty(proto: any, name: string, value: any, readonly?:
* first value that is valid.
*/
export function getValue<T>(...args: T[]): T {
for (const arg of arguments) {
for (const arg of args) {
if (arg !== undefined && arg === arg) {
return arg;
}
Expand Down

0 comments on commit 450306a

Please sign in to comment.