From 403d2638be9adba71324325ee7b584f091dcba0f Mon Sep 17 00:00:00 2001 From: sahilk45 Date: Thu, 17 Apr 2025 14:32:08 +0530 Subject: [PATCH 1/7] Added missing export and spelling error --- .../static-analysis/js/lloc/lib/index.js | 5 ++-- .../@stdlib/complex/float32/base/lib/index.js | 30 +++++++++++++++++-- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js index 856aff806ce0..f0e143ff1ad1 100644 --- a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js +++ b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js @@ -18,6 +18,8 @@ 'use strict'; +// cspell:ignore lloc + /** * Calculate the logical lines of code (LLOC) in a JavaScript program. * @@ -36,7 +38,6 @@ var main = require( './main.js' ); - // EXPORTS // -module.exports = main; +module.exports = main; \ No newline at end of file diff --git a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js index 33956887002a..40aa51a78fb7 100644 --- a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js +++ b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js @@ -15,7 +15,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - 'use strict'; /* @@ -26,7 +25,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); - // MAIN // /** @@ -54,6 +52,15 @@ setReadOnly( ns, 'add', require( '@stdlib/complex/float32/base/add' ) ); */ setReadOnly( ns, 'assert', require( '@stdlib/complex/float32/base/assert' ) ); +/** +* @name identity +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/complex/float32/base/identity} +*/ +setReadOnly( ns, 'identity', require( '@stdlib/complex/float32/base/identity' ) ); + /** * @name mul * @memberof ns @@ -63,7 +70,24 @@ setReadOnly( ns, 'assert', require( '@stdlib/complex/float32/base/assert' ) ); */ setReadOnly( ns, 'mul', require( '@stdlib/complex/float32/base/mul' ) ); +/** +* @name neg +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/complex/float32/base/neg} +*/ +setReadOnly( ns, 'neg', require( '@stdlib/complex/float32/base/neg' ) ); + +/** +* @name sub +* @memberof ns +* @readonly +* @type {Function} +* @see {@link module:@stdlib/complex/float32/base/sub} +*/ +setReadOnly( ns, 'sub', require( '@stdlib/complex/float32/base/sub' ) ); // EXPORTS // -module.exports = ns; +module.exports = ns; \ No newline at end of file From 9a0830a7598a2d980d13a25b11c0ccd72dfeb9da Mon Sep 17 00:00:00 2001 From: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:46:36 +0530 Subject: [PATCH 2/7] Update index.js Signed-off-by: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> --- .../@stdlib/_tools/static-analysis/js/lloc/lib/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js index f0e143ff1ad1..ba044578ddba 100644 --- a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js +++ b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js @@ -1,3 +1,4 @@ + /** * @license Apache-2.0 * @@ -40,4 +41,4 @@ var main = require( './main.js' ); // EXPORTS // -module.exports = main; \ No newline at end of file +module.exports = main; From 33cdc3064dcd10802e37a35127ad33dfa2b8affc Mon Sep 17 00:00:00 2001 From: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:47:32 +0530 Subject: [PATCH 3/7] Update index.js Signed-off-by: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> --- lib/node_modules/@stdlib/complex/float32/base/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js index 40aa51a78fb7..c5f53f8f41da 100644 --- a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js +++ b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js @@ -90,4 +90,4 @@ setReadOnly( ns, 'sub', require( '@stdlib/complex/float32/base/sub' ) ); // EXPORTS // -module.exports = ns; \ No newline at end of file +module.exports = ns; From d1e13372b80b2362eb9fd8c3062b84fe486ea9f2 Mon Sep 17 00:00:00 2001 From: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> Date: Thu, 17 Apr 2025 14:55:21 +0530 Subject: [PATCH 4/7] Update2 index.js Signed-off-by: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> --- .../@stdlib/_tools/static-analysis/js/lloc/lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js index ba044578ddba..91feb677f645 100644 --- a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js +++ b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js @@ -1,4 +1,3 @@ - /** * @license Apache-2.0 * From 38b12f4dd0fb363625efb8229338aa3dcb300cfe Mon Sep 17 00:00:00 2001 From: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:01:02 +0530 Subject: [PATCH 5/7] Update index.js Signed-off-by: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> --- .../@stdlib/_tools/static-analysis/js/lloc/lib/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js index 91feb677f645..8a0cde94174f 100644 --- a/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js +++ b/lib/node_modules/@stdlib/_tools/static-analysis/js/lloc/lib/index.js @@ -38,6 +38,7 @@ var main = require( './main.js' ); + // EXPORTS // module.exports = main; From c8d734e8c62d3a29f2ac4d98b1d98184be0eb27f Mon Sep 17 00:00:00 2001 From: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:05:37 +0530 Subject: [PATCH 6/7] Update2 index.js Signed-off-by: SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com> --- lib/node_modules/@stdlib/complex/float32/base/lib/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js index c5f53f8f41da..74a84ff09947 100644 --- a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js +++ b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js @@ -25,6 +25,7 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' ); + // MAIN // /** @@ -88,6 +89,7 @@ setReadOnly( ns, 'neg', require( '@stdlib/complex/float32/base/neg' ) ); */ setReadOnly( ns, 'sub', require( '@stdlib/complex/float32/base/sub' ) ); + // EXPORTS // module.exports = ns; From ccaa420f53837ac538a956ccd9dfddf20b731923 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Sun, 20 Apr 2025 14:03:51 -0400 Subject: [PATCH 7/7] style: add newline back before strict directive Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/complex/float32/base/lib/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js index 74a84ff09947..1bb1388b26e0 100644 --- a/lib/node_modules/@stdlib/complex/float32/base/lib/index.js +++ b/lib/node_modules/@stdlib/complex/float32/base/lib/index.js @@ -15,6 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + 'use strict'; /*