Skip to content

Commit ae68d95

Browse files
Update lib/node_modules/@stdlib/array/fixed-endian-factory/lib/main.js
Co-authored-by: Vinit Pandit <[email protected]> Signed-off-by: Ahmed_Kashkoush <[email protected]>
1 parent 58de631 commit ae68d95

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/fixed-endian-factory/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/fixed-endian-factory/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
702702
len = this._length;
703703
N = floor( len / 2 );
704704
for ( i = 0; i < N; i++ ) {
705-
j=len-i-1;
705+
j = len-i-1;
706706
tmp=buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE );
707707
buf[ SETTER ]( i*BYTES_PER_ELEMENT, buf[ GETTER ]( j*BYTES_PER_ELEMENT, this._isLE ), this._isLE );
708708
buf[ SETTER ]( j*BYTES_PER_ELEMENT, tmp, this._isLE );

0 commit comments

Comments
 (0)