From 89ddee3367d749785c06ed849e0da65691762e2c Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Tue, 14 Apr 2026 14:51:30 +0530 Subject: [PATCH 1/6] refactor: use logEachMap and array discrete-uniform for example --- 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: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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 --- --- .../number/float32/base/add/examples/index.js | 14 +++++--------- .../number/float32/base/div/examples/index.js | 14 +++++--------- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js index 0e7cac963837..dcd1d9f6c548 100644 --- a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var addf = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d + %d = %d', x, y, addf( x, y ) ); -} +logEachMap( '%d + %d = %d', x, y, addf ); diff --git a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js index bc94ca0d73ef..f60da10165f4 100644 --- a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var divf = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d / %d = %d', x, y, divf( x, y ) ); -} +logEachMap( '%d / %d = %d', x, y, divf ); From 306aba96fa0921a8f40bf6a590a3453d04c78487 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Tue, 14 Apr 2026 14:55:04 +0530 Subject: [PATCH 2/6] refactor: use logEachMap and array discrete-uniform for example --- 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: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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 --- --- .../number/float32/base/add/examples/index.js | 2 +- .../number/float32/base/div/examples/index.js | 2 +- .../number/float32/base/mul/examples/index.js | 16 ++++++---------- .../number/float32/base/sub/examples/index.js | 16 ++++++---------- 4 files changed, 14 insertions(+), 22 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js index dcd1d9f6c548..82809a8ecb67 100644 --- a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js index f60da10165f4..5ddb98cd0be6 100644 --- a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js index 470cf7adceab..de345a85dba9 100644 --- a/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var mulf = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d x %d = %d', x, y, mulf( x, y ) ); -} +logEachMap( '%d x %d = %d', x, y, mulf ); diff --git a/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js index 858f3b57cc7a..f94874b680e1 100644 --- a/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var subf = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d - %d = %d', x, y, subf( x, y ) ); -} +logEachMap( '%d - %d = %d', x, y, subf ); From 2f8d38f00545252090eec4fe5c80a8e7140763bf Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Tue, 14 Apr 2026 15:04:11 +0530 Subject: [PATCH 3/6] feat: use for identity --- 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: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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 --- --- .../number/float32/base/identity/examples/index.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/identity/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/identity/examples/index.js index 34ef0d803252..e99a2df14808 100644 --- a/lib/node_modules/@stdlib/number/float32/base/identity/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/identity/examples/index.js @@ -18,14 +18,10 @@ 'use strict'; -var randu = require( '@stdlib/random/base/randu' ); -var round = require( '@stdlib/math/base/special/round' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var identityf = require( './../lib' ); -var rand; -var i; +var x = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - rand = round( randu() * 100.0 ) - 50.0; - console.log( 'identity(%d) = %d', rand, identityf( rand ) ); -} +logEachMap( 'identity(%d) = %d', x, identityf ); From 5e343687cb12eb42457485ff9cb867c5bc05f4bf Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Tue, 14 Apr 2026 15:12:10 +0530 Subject: [PATCH 4/6] feat: for float64 --- 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: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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 --- --- .../number/float64/base/div/examples/index.js | 16 ++++++---------- .../float64/base/identity/examples/index.js | 14 +++++--------- .../number/float64/base/mul/examples/index.js | 16 ++++++---------- .../number/float64/base/sub/examples/index.js | 16 ++++++---------- 4 files changed, 23 insertions(+), 39 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js index 063225596c06..444642a725cf 100644 --- a/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var div = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d / %d = %d', x, y, div( x, y ) ); -} +logEachMap( '%d / %d = %d', x, y, div ); diff --git a/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js index 85da24b6c4c9..0de18bb2395f 100644 --- a/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2020 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,14 +18,10 @@ 'use strict'; -var randu = require( '@stdlib/random/base/randu' ); -var round = require( '@stdlib/math/base/special/round' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var identity = require( './../lib' ); -var rand; -var i; +var x = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - rand = round( randu() * 100.0 ) - 50.0; - console.log( 'identity(%d) = %d', rand, identity( rand ) ); -} +logEachMap( 'identity(%d) = %d', x, identity ); diff --git a/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js index dbbc2d747878..98cb51bc94f0 100644 --- a/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var mul = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d x %d = %d', x, y, mul( x, y ) ); -} +logEachMap( '%d x %d = %d', x, y, mul ); diff --git a/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js index d88b585883c7..e578d4004918 100644 --- a/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,15 +18,11 @@ 'use strict'; -var rand = require( '@stdlib/random/base/discrete-uniform' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); var sub = require( './../lib' ); -var x; -var y; -var i; +var x = discreteUniform( 100, -50, 50 ); +var y = discreteUniform( 100, -50, 50 ); -for ( i = 0; i < 100; i++ ) { - x = rand( -50, 50 ); - y = rand( -50, 50 ); - console.log( '%d - %d = %d', x, y, sub( x, y ) ); -} +logEachMap( '%d - %d = %d', x, y, sub ); From b7ad7f34a856df89a4190142783f48a5a4366f60 Mon Sep 17 00:00:00 2001 From: Lokesh Ranjan Date: Wed, 15 Apr 2026 00:41:38 +0530 Subject: [PATCH 5/6] Update index.js Signed-off-by: Lokesh Ranjan --- .../@stdlib/number/float64/base/sub/examples/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js index e578d4004918..56cc3a6852b3 100644 --- a/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/sub/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 102e00e52499913535a2b283fa9023ffb3bc3268 Mon Sep 17 00:00:00 2001 From: LokeshRanjan Date: Wed, 15 Apr 2026 00:52:55 +0530 Subject: [PATCH 6/6] revert: revert the Copyright year --- 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: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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 --- --- .../@stdlib/number/float32/base/add/examples/index.js | 2 +- .../@stdlib/number/float32/base/div/examples/index.js | 2 +- .../@stdlib/number/float32/base/mul/examples/index.js | 2 +- .../@stdlib/number/float32/base/sub/examples/index.js | 2 +- .../@stdlib/number/float64/base/div/examples/index.js | 2 +- .../@stdlib/number/float64/base/identity/examples/index.js | 2 +- .../@stdlib/number/float64/base/mul/examples/index.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js index 82809a8ecb67..dcd1d9f6c548 100644 --- a/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/add/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js index 5ddb98cd0be6..f60da10165f4 100644 --- a/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/div/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2023 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js index de345a85dba9..bbe377a5876b 100644 --- a/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/mul/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js b/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js index f94874b680e1..81d54513d036 100644 --- a/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js +++ b/lib/node_modules/@stdlib/number/float32/base/sub/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js index 444642a725cf..2bab683279c4 100644 --- a/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/div/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2023 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js index 0de18bb2395f..c611d5dd7898 100644 --- a/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/identity/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2020 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js b/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js index 98cb51bc94f0..5f2a6603dd4e 100644 --- a/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js +++ b/lib/node_modules/@stdlib/number/float64/base/mul/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2026 The Stdlib Authors. +* Copyright (c) 2021 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.