Skip to content

Instantly share code, notes, and snippets.

@tsvetomir
Last active July 31, 2017 12:28
Show Gist options
  • Save tsvetomir/d7aa7ae181db94cefabf790356105c78 to your computer and use it in GitHub Desktop.
Save tsvetomir/d7aa7ae181db94cefabf790356105c78 to your computer and use it in GitHub Desktop.
runOutsideZone
const symbol = Zone["__symbol__"]("setTimeout")
const plainTimeout = window[symbol];
export const runOutsideZone =
(fn, delay) => plainTimeout(fn, delay);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment