Skip to content

Commit ce087e1

Browse files
committed
changes made
Signed-off-by: hemantmm <[email protected]>
1 parent 7b99916 commit ce087e1

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

lib/node_modules/@stdlib/array/fixed-endian-factory/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ use the iterator with a `for...of` loop.
542542

543543
```javascript
544544
var value;
545-
for( value of arr.values() ) {
545+
for ( value of arr.values() ) {
546546
console.log( value );
547547
}
548548
// print each value of array

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
* @license Apache-2.0
33
*
44
* Copyright (c) 2025 The Stdlib Authors.
5-
*
5+
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
9-
*
9+
*
1010
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
11+
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
1414
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -54,4 +54,4 @@ bench( pkg+':values', function benchmark( b ) {
5454
b.toc();
5555
b.pass( 'benchmark finished' );
5656
b.end();
57-
});
57+
});

lib/node_modules/@stdlib/array/fixed-endian-factory/benchmark/benchmark.values.length.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**
22
* @license Apache-2.0
3-
*
3+
*
44
* Copyright (c) 2025 The Stdlib Authors.
5-
*
5+
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
9-
*
9+
*
1010
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
11+
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
1414
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -37,7 +37,7 @@ var Float64ArrayFE = factory( 'float64' );
3737

3838
/**
3939
* Creates a benchmark function for `values` iterator.
40-
*
40+
*
4141
* @private
4242
* @param {PositiveInteger} len - array length
4343
* @returns {Function} benchmark function
@@ -48,7 +48,7 @@ function createBenchmark( len ) {
4848

4949
/**
5050
* Benchmark function.
51-
*
51+
*
5252
* @private
5353
* @param {Benchmark} b - benchmark instance
5454
* @throws {Error} throws an error if NaN value is encountered
@@ -106,4 +106,4 @@ function main() {
106106
}
107107
}
108108

109-
main();
109+
main();

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
@@ -1097,7 +1097,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
10971097

10981098
/**
10991099
* Returns an iterator for array elements.
1100-
*
1100+
*
11011101
* @private
11021102
* @name values
11031103
* @memberof TypedArray.prototype

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**
22
* @license Apache-2.0
3-
*
3+
*
44
* Copyright (c) 2025 The Stdlib Authors.
5-
*
5+
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
9-
*
9+
*
1010
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
11+
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
1414
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

0 commit comments

Comments
 (0)