mirror of https://github.com/nodejs/node.git
fixup! typo
This commit is contained in:
parent
eb33efc9e7
commit
ca1c849000
|
@ -515,11 +515,11 @@ function filterBufferMapByNameAndType(name, type) {
|
|||
return [];
|
||||
} else {
|
||||
bufferList = [];
|
||||
for (let i = 0; i < markBufferEntries.length; i++) {
|
||||
ArrayPrototypePush(bufferList, markBufferEntries[i]);
|
||||
for (let i = 0; i < markEntryBuffer.length; i++) {
|
||||
ArrayPrototypePush(bufferList, markEntryBuffer[i]);
|
||||
}
|
||||
for (let i = 0; i < measureBufferEntries.length; i++) {
|
||||
ArrayPrototypePush(bufferList, measureBufferEntries[i]);
|
||||
for (let i = 0; i < measureEntryBuffer.length; i++) {
|
||||
ArrayPrototypePush(bufferList, measureEntryBuffer[i]);
|
||||
}
|
||||
for (let i = 0; i < resourceTimingBuffer.length; i++) {
|
||||
ArrayPrototypePush(bufferList, resourceTimingBuffer[i]);
|
||||
|
|
Loading…
Reference in New Issue