Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
lib: replace var with let/const
  • Loading branch information
jens-cappelle committed Nov 25, 2019
commit 84c7d27ea5533602cae43fbb2cbab991c939adf5
22 changes: 11 additions & 11 deletions lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const {
ReflectOwnKeys,
} = primordials;

var spliceOne;
let spliceOne;

const {
kEnhanceStackBeforeInspector,
Expand Down Expand Up @@ -64,7 +64,7 @@ EventEmitter.prototype._maxListeners = undefined;

// By default EventEmitters will print a warning if more than 10 listeners are
// added to it. This is a useful default which helps finding memory leaks.
var defaultMaxListeners = 10;
let defaultMaxListeners = 10;

function checkListener(listener) {
if (typeof listener !== 'function') {
Expand Down Expand Up @@ -121,7 +121,7 @@ EventEmitter.prototype.getMaxListeners = function getMaxListeners() {
// Returns the length and line number of the first sequence of `a` that fully
// appears in `b` with a length of at least 4.
function identicalSequenceRange(a, b) {
for (var i = 0; i < a.length - 3; i++) {
for (let i = 0; i < a.length - 3; i++) {
// Find the first entry of b that matches the current entry of a.
const pos = b.indexOf(a[i]);
if (pos !== -1) {
Expand Down Expand Up @@ -218,17 +218,17 @@ EventEmitter.prototype.emit = function emit(type, ...args) {
} else {
const len = handler.length;
const listeners = arrayClone(handler, len);
for (var i = 0; i < len; ++i)
for (let i = 0; i < len; ++i)
ReflectApply(listeners[i], this, args);
}

return true;
};

function _addListener(target, type, listener, prepend) {
var m;
var events;
var existing;
let m;
let events;
let existing;

checkListener(listener);

Expand Down Expand Up @@ -357,7 +357,7 @@ EventEmitter.prototype.removeListener =
} else if (typeof list !== 'function') {
let position = -1;

for (var i = list.length - 1; i >= 0; i--) {
for (let i = list.length - 1; i >= 0; i--) {
if (list[i] === listener || list[i].listener === listener) {
originalListener = list[i].listener;
position = i;
Expand Down Expand Up @@ -426,7 +426,7 @@ EventEmitter.prototype.removeAllListeners =
this.removeListener(type, listeners);
} else if (listeners !== undefined) {
// LIFO order
for (var i = listeners.length - 1; i >= 0; i--) {
for (let i = listeners.length - 1; i >= 0; i--) {
this.removeListener(type, listeners[i]);
}
}
Expand Down Expand Up @@ -490,14 +490,14 @@ EventEmitter.prototype.eventNames = function eventNames() {

function arrayClone(arr, n) {
const copy = new Array(n);
for (var i = 0; i < n; ++i)
for (let i = 0; i < n; ++i)
copy[i] = arr[i];
return copy;
}

function unwrapListeners(arr) {
const ret = new Array(arr.length);
for (var i = 0; i < ret.length; ++i) {
for (let i = 0; i < ret.length; ++i) {
ret[i] = arr[i].listener || arr[i];
}
return ret;
Expand Down