Skip to content

Commit 9b24a18

Browse files
committed
docs: add missing JSDoc comment
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b28e890 commit 9b24a18

File tree

17 files changed

+85
-0
lines changed

17 files changed

+85
-0
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/nanmax-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ function createBenchmark( len ) {
109109

110110
// MAIN //
111111

112+
/**
113+
* Main execution sequence.
114+
*
115+
* @private
116+
*/
112117
function main() {
113118
var len;
114119
var min;

lib/node_modules/@stdlib/stats/strided/max-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ function createBenchmark( len ) {
8888

8989
// MAIN //
9090

91+
/**
92+
* Main execution sequence.
93+
*
94+
* @private
95+
*/
9196
function main() {
9297
var len;
9398
var min;

lib/node_modules/@stdlib/stats/strided/max-by/benchmark/benchmark.ndarray.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ function createBenchmark( len ) {
8888

8989
// MAIN //
9090

91+
/**
92+
* Main execution sequence.
93+
*
94+
* @private
95+
*/
9196
function main() {
9297
var len;
9398
var min;

lib/node_modules/@stdlib/stats/strided/midrange-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ function createBenchmark( len ) {
8989

9090
// MAIN //
9191

92+
/**
93+
* Main execution sequence.
94+
*
95+
* @private
96+
*/
9297
function main() {
9398
var len;
9499
var min;

lib/node_modules/@stdlib/stats/strided/midrange-by/benchmark/benchmark.ndarray.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ function createBenchmark( len ) {
8989

9090
// MAIN //
9191

92+
/**
93+
* Main execution sequence.
94+
*
95+
* @private
96+
*/
9297
function main() {
9398
var len;
9499
var min;

lib/node_modules/@stdlib/stats/strided/min-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ function createBenchmark( len ) {
8888

8989
// MAIN //
9090

91+
/**
92+
* Main execution sequence.
93+
*
94+
* @private
95+
*/
9196
function main() {
9297
var len;
9398
var min;

lib/node_modules/@stdlib/stats/strided/min-by/benchmark/benchmark.ndarray.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ function createBenchmark( len ) {
8888

8989
// MAIN //
9090

91+
/**
92+
* Main execution sequence.
93+
*
94+
* @private
95+
*/
9196
function main() {
9297
var len;
9398
var min;

lib/node_modules/@stdlib/stats/strided/nanmax-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@ function createBenchmark( len ) {
9696

9797
// MAIN //
9898

99+
/**
100+
* Main execution sequence.
101+
*
102+
* @private
103+
*/
99104
function main() {
100105
var len;
101106
var min;

lib/node_modules/@stdlib/stats/strided/nanmax-by/benchmark/benchmark.ndarray.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@ function createBenchmark( len ) {
9696

9797
// MAIN //
9898

99+
/**
100+
* Main execution sequence.
101+
*
102+
* @private
103+
*/
99104
function main() {
100105
var len;
101106
var min;

lib/node_modules/@stdlib/stats/strided/nanmidrange-by/benchmark/benchmark.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ function createBenchmark( len ) {
8989

9090
// MAIN //
9191

92+
/**
93+
* Main execution sequence.
94+
*
95+
* @private
96+
*/
9297
function main() {
9398
var len;
9499
var min;

0 commit comments

Comments
 (0)