mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 11:29:35 +00:00

As per the `prefer-const` eslint rule, few instances of `let` have been identified to be better with `const`. This patch updates all those instances. Refer: https://github.com/nodejs/node/issues/3118 PR-URL: https://github.com/nodejs/node/pull/3152 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
20 lines
370 B
JavaScript
20 lines
370 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
|
|
function testUint8Array(ui) {
|
|
const length = ui.length;
|
|
for (let i = 0; i < length; i++)
|
|
if (ui[i] !== 0) return false;
|
|
return true;
|
|
}
|
|
|
|
|
|
for (let i = 0; i < 100; i++) {
|
|
new Buffer(0);
|
|
const ui = new Uint8Array(65);
|
|
assert.ok(testUint8Array(ui), 'Uint8Array is not zero-filled');
|
|
}
|