From e7c8f4523c8ee3a832820ffd8661a3afe18964d6 Mon Sep 17 00:00:00 2001 From: Dharmesh Gehlaut Date: Sat, 24 Jan 2026 10:05:31 +0530 Subject: [PATCH 1/2] fix: removed new array and use [] instead of that --- .../@stdlib/plot/components/svg/path/lib/render/utils/zip.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/plot/components/svg/path/lib/render/utils/zip.js b/lib/node_modules/@stdlib/plot/components/svg/path/lib/render/utils/zip.js index 731735397afc..541fdc333b85 100644 --- a/lib/node_modules/@stdlib/plot/components/svg/path/lib/render/utils/zip.js +++ b/lib/node_modules/@stdlib/plot/components/svg/path/lib/render/utils/zip.js @@ -40,7 +40,8 @@ function zip( x, y ) { if ( x.length !== y.length ) { throw new Error( format( 'invalid arguments. Must provide equal length array-like objects. x length: `%u`. y length: `%u`.', x.length, y.length ) ); } - out = new Array( x.length ); + out = [] + out.length = x.length; for ( i = 0; i < x.length; i++ ) { out[ i ] = [ x[i], y[i] ]; } From 98e255827e1f57b2a471f01a9bf66eaf7418e555 Mon Sep 17 00:00:00 2001 From: Dharmesh Gehlaut Date: Sat, 24 Jan 2026 10:18:04 +0530 Subject: [PATCH 2/2] chore: trigger CI