Skip to content

Commit eab6e02

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 ae68d95 commit eab6e02

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
@@ -703,7 +703,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
703703
N = floor( len / 2 );
704704
for ( i = 0; i < N; i++ ) {
705705
j = len-i-1;
706-
tmp=buf[ GETTER ]( i*BYTES_PER_ELEMENT, this._isLE );
706+
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 );
709709
}

0 commit comments

Comments
 (0)