Last active
May 21, 2018 05:11
-
-
Save cartant/856c60bcd99f15c57be59fbdd8117ba5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { animationFrameScheduler, pipe } from "rxjs"; | |
| import { auditTime } from "rxjs/operators"; | |
| export const auditFrame = pipe( | |
| auditTime(0, animationFrameScheduler) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment