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 authored Feb 15, 2020
2 parents e238e87 + 53302ad commit 726955c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 726955c

Please sign in to comment.