Skip to content

Commit

Permalink
Convert react-native-github/Libraries to let/const
Browse files Browse the repository at this point in the history
Reviewed By: sahrens

Differential Revision: D7961763

fbshipit-source-id: ff7dd1d2c7101c8019e0b4f844d8c377b4d13a13
  • Loading branch information
elicwhite authored and facebook-github-bot committed May 11, 2018
1 parent dca21c8 commit cd7c91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/BatchedBridge/MessageQueue.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class MessageQueue {
global.nativeFlushQueueImmediate &&
now - this._lastFlush >= MIN_TIME_BETWEEN_FLUSHES_MS
) {
var queue = this._queue;
const queue = this._queue;
this._queue = [[], [], [], this._callID];
this._lastFlush = now;
global.nativeFlushQueueImmediate(queue);
Expand Down

0 comments on commit cd7c91f

Please sign in to comment.