Skip to content

Commit 12c5c74

Browse files
benleshkwonoj
authored andcommitted
fix(babel): fix an issue where babel could not compile Scheduler.async (#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
1 parent 2ac6ed0 commit 12c5c74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rx.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ import observable from 'symbol-observable';
187187
*/
188188
let Scheduler = {
189189
asap,
190-
async,
191190
queue,
192-
animationFrame
191+
animationFrame,
192+
async
193193
};
194194

195195
/**

0 commit comments

Comments
 (0)