From 12c5c74ceeae59da0a13d70bb5fe83364dd2b08a Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Tue, 5 Jul 2016 12:36:11 -0700 Subject: [PATCH] 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 --- src/Rx.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Rx.ts b/src/Rx.ts index b9ec2df28a..1366783df7 100644 --- a/src/Rx.ts +++ b/src/Rx.ts @@ -187,9 +187,9 @@ import observable from 'symbol-observable'; */ let Scheduler = { asap, - async, queue, - animationFrame + animationFrame, + async }; /**