Skip to content

Commit

Permalink
fix(babel): fix an issue where babel could not compile `Scheduler.asy…
Browse files Browse the repository at this point in the history
…nc` (#1807)

This moves the `async` property to be the last one defined, because babel will then not choke on the `,` after the property.

fixes #1806
  • Loading branch information
benlesh authored and kwonoj committed Jul 5, 2016
1 parent 2ac6ed0 commit 12c5c74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Rx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ import observable from 'symbol-observable';
*/
let Scheduler = {
asap,
async,
queue,
animationFrame
animationFrame,
async
};

/**
Expand Down

0 comments on commit 12c5c74

Please sign in to comment.