Skip to content

Commit 980e2f7

Browse files
committed
solved eslint issue
1 parent adce8ac commit 980e2f7

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

lib/node_modules/@stdlib/stats/incr/nanmsumabs2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ sum = accumulator( -7.0 ); // [-1.0, 3.0, -7.0]
8787
// returns 59.0
8888

8989
sum = accumulator( NaN ); // [3.0, -7.0, NaN]
90-
// returns 58.0
90+
// returns 59.0
9191

9292
sum = accumulator();
93-
// returns 58.0
93+
// returns 59.0
9494
```
9595

9696
</section>

lib/node_modules/@stdlib/stats/incr/nanmsumabs2/lib/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18+
1819
'use strict';
20+
1921
/**
2022
* Compute a moving sum of squared absolute values incrementally, ignoring NaN values.
2123
*
@@ -44,7 +46,13 @@
4446
* sum = accumulator();
4547
* // returns 34.0
4648
*/
49+
50+
4751
// MODULES //
52+
4853
var incrnanmsumabs2 = require( './main.js' );
54+
55+
4956
// EXPORTS //
57+
5058
module.exports = incrnanmsumabs2;

0 commit comments

Comments
 (0)