Skip to content

Commit

Permalink
Fix merge conflict issues
Browse files Browse the repository at this point in the history
  • Loading branch information
flarnie committed May 25, 2018
1 parent 682612a commit 3707b89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/react-scheduler/src/ReactScheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ import requestAnimationFrameForReact from 'shared/requestAnimationFrameForReact'
// this module is initially evaluated.
// We want to be using a consistent implementation.
const localDate = Date;
const localSetTimeout = setTimeout;
const localClearTimeout = clearTimeout;

const hasNativePerformanceNow =
typeof performance === 'object' && typeof performance.now === 'function';
Expand Down Expand Up @@ -157,6 +155,7 @@ const messageKey =
Math.random()
.toString(36)
.slice(2);
const localPostMessage = window.postMessage;
const idleTick = function(event) {
if (event.source !== window || event.data !== messageKey) {
return;
Expand Down

0 comments on commit 3707b89

Please sign in to comment.