Skip to content

Commit fa909c0

Browse files
chore: bench clean up
1 parent 948cb19 commit fa909c0

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmeanors/benchmark/benchmark.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var dsnanmeanors = require( './../lib/dsnanmeanors.js' );
3535
/**
3636
* Returns a random value or `NaN`.
3737
*
38+
* @private
3839
* @returns {number} random number or `NaN`
3940
*/
4041
function rand() {

lib/node_modules/@stdlib/stats/base/dsnanmeanors/benchmark/benchmark.native.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ var opts = {
4444
/**
4545
* Returns a random value or `NaN`.
4646
*
47+
* @private
4748
* @returns {number} random number or `NaN`
4849
*/
4950
function rand() {

lib/node_modules/@stdlib/stats/base/dsnanmeanors/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var dsnanmeanors = require( './../lib/ndarray.js' );
3535
/**
3636
* Returns a random value or `NaN`.
3737
*
38+
* @private
3839
* @returns {number} random number or `NaN`
3940
*/
4041
function rand() {

lib/node_modules/@stdlib/stats/base/dsnanmeanors/benchmark/benchmark.ndarray.native.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ var opts = {
4444
/**
4545
* Returns a random value or `NaN`.
4646
*
47+
* @private
4748
* @returns {number} random number or `NaN`
4849
*/
4950
function rand() {

lib/node_modules/@stdlib/stats/base/dsnanmeanors/lib/dsnanmeanors.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
'use strict';
2020

21+
// MODULES //
22+
2123
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
2224
var ndarray = require( './ndarray.js' );
2325

0 commit comments

Comments
 (0)