Skip to content

Commit 3710c40

Browse files
authored
style: add missing spaces
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 4d3a9c0 commit 3710c40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/assert/has-dataview-support/test

lib/node_modules/@stdlib/assert/has-dataview-support/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ tape( 'if `DataView` is supported, detection result is `true`', function test( t
7373
out.buffer = buf;
7474
out._buffer = []; // eslint-disable-line no-underscore-dangle
7575
for ( i = 0; i < byteLength; i++ ) {
76-
out._buffer.push(0); // eslint-disable-line no-underscore-dangle
76+
out._buffer.push( 0 ); // eslint-disable-line no-underscore-dangle
7777
}
7878
out.byteLength = byteLength;
7979
out.byteOffset = byteOffset;

0 commit comments

Comments
 (0)