From 46b5240818799b9d31b40cf42de446fb7b40714f Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Mon, 12 Jan 2026 18:52:40 +0530 Subject: [PATCH 01/31] Remove duplicate copyLocationInfo function Signed-off-by: Suyash Pathak --- .../lib/main.js | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js b/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js index d883ee920808..02d62b77403f 100644 --- a/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js @@ -39,6 +39,26 @@ var rule; // FUNCTIONS // +/** +* Copies AST node location info. +* +* @private +* @param {Object} loc - AST node location +* @returns {Object} copied location info +*/ +function copyLocationInfo( loc ) { + return { + 'start': { + 'line': loc.start.line, + 'column': loc.start.column + }, + 'end': { + 'line': loc.end.line, + 'column': loc.end.column + } + }; +} + /** * Rule to prevent indentation of Markdown heading content in JSDoc descriptions. * @@ -112,26 +132,6 @@ function main( context ) { } } - /** - * Copies AST node location info. - * - * @private - * @param {Object} loc - AST node location - * @returns {Object} copied location info - */ - function copyLocationInfo( loc ) { - return { - 'start': { - 'line': loc.start.line, - 'column': loc.start.column - }, - 'end': { - 'line': loc.end.line, - 'column': loc.end.column - } - }; - } - /** * Reports an error message. * From c25f7feb23962dab0feea5e313f50d3bae09e269 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:17:51 +0530 Subject: [PATCH 02/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/minstd-shuffle/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js index a63e0d409e93..cb02de703370 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js @@ -74,4 +74,3 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); module.exports = main; -// exports: { "ndarray": "main.ndarray", "normalized": "main.normalized" } From 19071ebe792e8e2ac3fabb8d764efed15c203f99 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:18:23 +0530 Subject: [PATCH 03/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/minstd/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/minstd/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd/lib/index.js index f1ef47d5c91c..dea2a73befad 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd/lib/index.js @@ -73,5 +73,3 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray", "normalized": "main.normalized" } From e08a571e7074b388381ddcf6106e202d4fb3f7b1 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:19:11 +0530 Subject: [PATCH 04/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js b/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js index 90ccb9572fbc..f154827e2edb 100644 --- a/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js @@ -74,4 +74,3 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); module.exports = main; -// exports: { "ndarray": "main.ndarray", "normalized": "main.normalized" } From 65e4b8bdfcd84e3324836dd2397861e175b68420 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:23:45 +0530 Subject: [PATCH 05/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js b/lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js index 8d41fc6c99f8..342a1db7d6d5 100644 --- a/lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 7852d56a429e17ae1c58aa67b07a17e53b104bb5 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:26:18 +0530 Subject: [PATCH 06/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/bernoulli/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/bernoulli/lib/index.js b/lib/node_modules/@stdlib/random/strided/bernoulli/lib/index.js index 07b4f22c64d4..1ab9ddc42175 100644 --- a/lib/node_modules/@stdlib/random/strided/bernoulli/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/bernoulli/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From ed346252505ea965b1b8e048a3ea31ff5ce557db Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:27:46 +0530 Subject: [PATCH 07/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/beta/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/beta/lib/index.js b/lib/node_modules/@stdlib/random/strided/beta/lib/index.js index c868971ed1df..e6a9bed8970c 100644 --- a/lib/node_modules/@stdlib/random/strided/beta/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/beta/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 0c22c344eda3fd099a5e7fb16ebcd289f2138cd7 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:28:26 +0530 Subject: [PATCH 08/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js b/lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js index d1b8cb80bcb9..b62341225061 100644 --- a/lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From db6bdb286addd1ddcaf3c8ff5f9549e68a40efe6 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:29:16 +0530 Subject: [PATCH 09/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/chi/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/chi/lib/index.js b/lib/node_modules/@stdlib/random/strided/chi/lib/index.js index 2ec7728f1a54..554e37b2e2ee 100644 --- a/lib/node_modules/@stdlib/random/strided/chi/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/chi/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From aa2e1fe3fa5e7f552922df55a0137f1461c444b6 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:57:34 +0530 Subject: [PATCH 10/31] Update exports to remove 'ndarray' Removed 'ndarray' export from the module exports. Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/chisquare/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/chisquare/lib/index.js b/lib/node_modules/@stdlib/random/strided/chisquare/lib/index.js index 6d4b6d60fe80..2c41596ed71a 100644 --- a/lib/node_modules/@stdlib/random/strided/chisquare/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/chisquare/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From 49e02a5c40314406afb1893e0dfe46ace7feda78 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:58:12 +0530 Subject: [PATCH 11/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/cosine/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/cosine/lib/index.js b/lib/node_modules/@stdlib/random/strided/cosine/lib/index.js index b3c26863eef6..977bd71bb827 100644 --- a/lib/node_modules/@stdlib/random/strided/cosine/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/cosine/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From d3aa41d69fd68f7f0a8b9d912a4a2bbb16bbd02a Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:58:41 +0530 Subject: [PATCH 12/31] Remove commented exports from index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/discrete-uniform/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/discrete-uniform/lib/index.js b/lib/node_modules/@stdlib/random/strided/discrete-uniform/lib/index.js index cba9dd5375b4..c695b11f7816 100644 --- a/lib/node_modules/@stdlib/random/strided/discrete-uniform/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/discrete-uniform/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 8b4075f38a549123d36e4ff6c93e4136812ca20d Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 02:59:20 +0530 Subject: [PATCH 13/31] Update index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/exponential/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/exponential/lib/index.js b/lib/node_modules/@stdlib/random/strided/exponential/lib/index.js index 5c2ddc197077..44e533835136 100644 --- a/lib/node_modules/@stdlib/random/strided/exponential/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/exponential/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From 8648a8480eb9990a983a9ea083c323056522c05a Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:00:21 +0530 Subject: [PATCH 14/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js b/lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js index 74ed17281c69..1748a4c48aa1 100644 --- a/lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From c347e2adff4b556ca337808ce371d72783b2f8f9 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:01:14 +0530 Subject: [PATCH 15/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/geometric/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/geometric/lib/index.js b/lib/node_modules/@stdlib/random/strided/geometric/lib/index.js index bf38b353e65a..3c33a6ccd336 100644 --- a/lib/node_modules/@stdlib/random/strided/geometric/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/geometric/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From e54c6c35be22160d83f54f1ba9d77244507902b0 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:02:00 +0530 Subject: [PATCH 16/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/gamma/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/gamma/lib/index.js b/lib/node_modules/@stdlib/random/strided/gamma/lib/index.js index 6505847d3113..21bfebf2bb2c 100644 --- a/lib/node_modules/@stdlib/random/strided/gamma/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/gamma/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 54e45567e2c002d9df65e27242c16d1f31b59ca7 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:02:47 +0530 Subject: [PATCH 17/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js b/lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js index 9d3c02197c2f..8a9a0a106796 100644 --- a/lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 93f241f13242551e8e0ba9b603c7ff0192885d07 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:03:43 +0530 Subject: [PATCH 18/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/normal/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/normal/lib/index.js b/lib/node_modules/@stdlib/random/strided/normal/lib/index.js index 6357e6cd2d58..ba67f7c42ef9 100644 --- a/lib/node_modules/@stdlib/random/strided/normal/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/normal/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 9317b14362d5ea2099b6819dffdb0a3e81f60937 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:04:15 +0530 Subject: [PATCH 19/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/poisson/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/poisson/lib/index.js b/lib/node_modules/@stdlib/random/strided/poisson/lib/index.js index b1c209f0255c..d47443e4f46d 100644 --- a/lib/node_modules/@stdlib/random/strided/poisson/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/poisson/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From 9d9ee3855b302a620f14f4dcc9ae903a12ebb418 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:04:43 +0530 Subject: [PATCH 20/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/randu/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/randu/lib/index.js b/lib/node_modules/@stdlib/random/strided/randu/lib/index.js index 21c8f046ec12..e49d4e10d979 100644 --- a/lib/node_modules/@stdlib/random/strided/randu/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/randu/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From cf04b17a8452a2439ec882b09c848f43fdcd63c0 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:05:21 +0530 Subject: [PATCH 21/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/rayleigh/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/rayleigh/lib/index.js b/lib/node_modules/@stdlib/random/strided/rayleigh/lib/index.js index 5578eb12ff6a..a32d02a242e0 100644 --- a/lib/node_modules/@stdlib/random/strided/rayleigh/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/rayleigh/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From 6a28b4877565aef6a4346294b625c0c4746414a4 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:05:57 +0530 Subject: [PATCH 22/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/t/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/t/lib/index.js b/lib/node_modules/@stdlib/random/strided/t/lib/index.js index b0d86a0226e6..9781ebe1007b 100644 --- a/lib/node_modules/@stdlib/random/strided/t/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/t/lib/index.js @@ -60,4 +60,4 @@ setReadOnly( main, 'factory', factory ); module.exports = main; -// exports: { "factory": "main.factory", "ndarray": "main.ndarray" } +// exports: { "factory": "main.factory" } From 5623abafb399248c7621d949e57312f2116cd9dc Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:06:41 +0530 Subject: [PATCH 23/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/uniform/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/uniform/lib/index.js b/lib/node_modules/@stdlib/random/strided/uniform/lib/index.js index cb6745a5f6ae..1662e350e8b3 100644 --- a/lib/node_modules/@stdlib/random/strided/uniform/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/uniform/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From ef3bbb333dafbc52d9a421161fcc6a12d50f7300 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:07:13 +0530 Subject: [PATCH 24/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/weibull/lib/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/random/strided/weibull/lib/index.js b/lib/node_modules/@stdlib/random/strided/weibull/lib/index.js index 14fce4913551..e830b6fdc79c 100644 --- a/lib/node_modules/@stdlib/random/strided/weibull/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/weibull/lib/index.js @@ -59,5 +59,3 @@ setReadOnly( main, 'ndarray', ndarray ); // EXPORTS // module.exports = main; - -// exports: { "ndarray": "main.ndarray" } From 464166457bfcf47fd5ff6e3737fabc8b48295578 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:26:35 +0530 Subject: [PATCH 25/31] Update main.js Signed-off-by: Suyash Pathak From e236cd70c24651fea72948052d7a1777fa5c2c16 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:30:00 +0530 Subject: [PATCH 26/31] Update main.js Signed-off-by: Suyash Pathak --- .../lib/main.js | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js b/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js index 02d62b77403f..d883ee920808 100644 --- a/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js @@ -39,26 +39,6 @@ var rule; // FUNCTIONS // -/** -* Copies AST node location info. -* -* @private -* @param {Object} loc - AST node location -* @returns {Object} copied location info -*/ -function copyLocationInfo( loc ) { - return { - 'start': { - 'line': loc.start.line, - 'column': loc.start.column - }, - 'end': { - 'line': loc.end.line, - 'column': loc.end.column - } - }; -} - /** * Rule to prevent indentation of Markdown heading content in JSDoc descriptions. * @@ -132,6 +112,26 @@ function main( context ) { } } + /** + * Copies AST node location info. + * + * @private + * @param {Object} loc - AST node location + * @returns {Object} copied location info + */ + function copyLocationInfo( loc ) { + return { + 'start': { + 'line': loc.start.line, + 'column': loc.start.column + }, + 'end': { + 'line': loc.end.line, + 'column': loc.end.column + } + }; + } + /** * Reports an error message. * From 72a4536ff2f290941e31fb92625bf20cf06fe12e Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:35:22 +0530 Subject: [PATCH 27/31] Update index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/minstd-shuffle/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js index cb02de703370..d1b160477a37 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js @@ -73,4 +73,3 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); // EXPORTS // module.exports = main; - From 42dc78c95560aa9c44bff3f9fbd99a548739926c Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:38:29 +0530 Subject: [PATCH 28/31] Update index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/minstd-shuffle/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js index d1b160477a37..d9262bf21f4c 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js @@ -69,7 +69,6 @@ setReadOnly( main, 'ndarray', ndarray ); setReadOnly( main, 'normalized', normalized ); setReadOnly( normalized, 'ndarray', ndarrayNormalized ); - // EXPORTS // module.exports = main; From fe4f61c64088a3b09ecf9ca227bb419c852aec76 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:43:40 +0530 Subject: [PATCH 29/31] Update index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/minstd-shuffle/lib/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js index d9262bf21f4c..af2b627a5edd 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js @@ -69,6 +69,8 @@ setReadOnly( main, 'ndarray', ndarray ); setReadOnly( main, 'normalized', normalized ); setReadOnly( normalized, 'ndarray', ndarrayNormalized ); + // EXPORTS // + module.exports = main; From a0c2e63b3f3b23cef1f4441e7299d5bad96d69c1 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:48:48 +0530 Subject: [PATCH 30/31] Update index.js Signed-off-by: Suyash Pathak --- .../@stdlib/random/strided/minstd-shuffle/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js index af2b627a5edd..af62bbba009b 100644 --- a/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js @@ -54,6 +54,7 @@ * minstd.normalized( out.length, out, 1 ); */ + // MODULES // var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); @@ -72,5 +73,4 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); // EXPORTS // - module.exports = main; From 8d226b28f0093e7453d1cb8321ac417c29892c70 Mon Sep 17 00:00:00 2001 From: Suyash Pathak Date: Tue, 13 Jan 2026 03:55:54 +0530 Subject: [PATCH 31/31] Update index.js Signed-off-by: Suyash Pathak --- lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js b/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js index f154827e2edb..26507e453a5f 100644 --- a/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js +++ b/lib/node_modules/@stdlib/random/strided/mt19937/lib/index.js @@ -73,4 +73,3 @@ setReadOnly( normalized, 'ndarray', ndarrayNormalized ); // EXPORTS // module.exports = main; -