Skip to content

Commit e774e66

Browse files
committed
Auto-generated commit
1 parent ab89d04 commit e774e66

File tree

8 files changed

+51
-8
lines changed

8 files changed

+51
-8
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-11)
7+
## Unreleased (2025-09-01)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`774b270`](https://github.com/stdlib-js/stdlib/commit/774b270d053d49740326553d549f698c7a5e94c8) - add missing exports to namespaces
14+
- [`fcad91e`](https://github.com/stdlib-js/stdlib/commit/fcad91e93b7066c1324e37a53567a686c08f2102) - add `number/int32/base/identity` [(#7861)](https://github.com/stdlib-js/stdlib/pull/7861)
1315
- [`fd83184`](https://github.com/stdlib-js/stdlib/commit/fd8318458d00f55297203080506d60e855a81437) - add `number/int32/base/muldw`
1416
- [`c528ca7`](https://github.com/stdlib-js/stdlib/commit/c528ca74afe26392c37b06db6bacbd9b7a874af2) - add `number/int32/base/mul`
1517

@@ -35,6 +37,9 @@ This release closes the following issue:
3537

3638
<details>
3739

40+
- [`774b270`](https://github.com/stdlib-js/stdlib/commit/774b270d053d49740326553d549f698c7a5e94c8) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
41+
- [`7483bef`](https://github.com/stdlib-js/stdlib/commit/7483bef13b1d3241347266d25a02957269419825) - **test:** use .strictEqual() instead of .equal() _(by Philipp Burckhardt)_
42+
- [`fcad91e`](https://github.com/stdlib-js/stdlib/commit/fcad91e93b7066c1324e37a53567a686c08f2102) - **feat:** add `number/int32/base/identity` [(#7861)](https://github.com/stdlib-js/stdlib/pull/7861) _(by Gunj Joshi)_
3843
- [`5896836`](https://github.com/stdlib-js/stdlib/commit/5896836635aa28aba7c97b3f21d32735d867c43b) - **build:** add package meta data _(by Athan Reines)_
3944
- [`ccff6bb`](https://github.com/stdlib-js/stdlib/commit/ccff6bb23b8189890d32db75ce84ea464403a30d) - **chore:** fix JavaScript lint errors [(#7066)](https://github.com/stdlib-js/stdlib/pull/7066) _(by Uday Kakade)_
4045
- [`9a6831e`](https://github.com/stdlib-js/stdlib/commit/9a6831eb31d985baec5ca19f5286e5756bacad8f) - **refactor:** update paths _(by Gururaj Gurram)_
@@ -51,10 +56,12 @@ This release closes the following issue:
5156

5257
### Contributors
5358

54-
A total of 3 people contributed to this release. Thank you to the following contributors:
59+
A total of 5 people contributed to this release. Thank you to the following contributors:
5560

5661
- Athan Reines
62+
- Gunj Joshi
5763
- Gururaj Gurram
64+
- Philipp Burckhardt
5865
- Uday Kakade
5966

6067
</section>

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -121,6 +122,7 @@ Muhammad Haris <[email protected]>
121122
Muhammad Taaha Tariq <[email protected]>
122123
Muhmmad Saad <[email protected]>
123124
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
124126
Naresh Jagadeesan <[email protected]>
125127
Naveen Kumar <[email protected]>
126128
Neeraj Pathak <[email protected]>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
164166
Ryan Seal <[email protected]>
165167
Rylan Yang <[email protected]>
166168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
167170
SHIVAM YADAV <[email protected]>
168171
Sachin Raj <[email protected]>
169172
Sahil Goyal <[email protected]>
@@ -186,6 +189,7 @@ Sivam Das <[email protected]>
186189
Snehil Shah <[email protected]>
187190
Soumajit Chatterjee <[email protected]>
188191
Spandan Barve <[email protected]>
192+
Srinivas Batthula <[email protected]>
189193
Stephannie Jiménez Gacha <[email protected]>
190194
Suhaib Ilahi <[email protected]>
191195
Suraj Kumar <[email protected]>

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,33 @@ var setReadOnly = require( '@stdlib/utils-define-read-only-property' );
3636
*/
3737
var ns = {};
3838

39+
/**
40+
* @name identity
41+
* @memberof ns
42+
* @readonly
43+
* @type {Function}
44+
* @see {@link module:@stdlib/number/int32/base/identity}
45+
*/
46+
setReadOnly( ns, 'identity', require( '@stdlib/number-int32-base-identity' ) );
47+
48+
/**
49+
* @name mul
50+
* @memberof ns
51+
* @readonly
52+
* @type {Function}
53+
* @see {@link module:@stdlib/number/int32/base/mul}
54+
*/
55+
setReadOnly( ns, 'mul', require( '@stdlib/number-int32-base-mul' ) );
56+
57+
/**
58+
* @name muldw
59+
* @memberof ns
60+
* @readonly
61+
* @type {Function}
62+
* @see {@link module:@stdlib/number/int32/base/muldw}
63+
*/
64+
setReadOnly( ns, 'muldw', require( '@stdlib/number-int32-base-muldw' ) );
65+
3966
/**
4067
* @name int32ToUint32
4168
* @memberof ns

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,29 @@
3636
"url": "https://github.com/stdlib-js/stdlib/issues"
3737
},
3838
"dependencies": {
39+
"@stdlib/number-int32-base-identity": "github:stdlib-js/number-int32-base-identity#main",
40+
"@stdlib/number-int32-base-mul": "github:stdlib-js/number-int32-base-mul#main",
41+
"@stdlib/number-int32-base-muldw": "github:stdlib-js/number-int32-base-muldw#main",
3942
"@stdlib/number-int32-base-to-uint32": "^0.2.2",
4043
"@stdlib/utils-define-read-only-property": "^0.2.2"
4144
},
4245
"devDependencies": {
4346
"@stdlib/array-float64": "^0.2.2",
4447
"@stdlib/assert-has-own-property": "^0.2.2",
48+
"@stdlib/console-log-each-map": "github:stdlib-js/console-log-each-map#main",
4549
"@stdlib/constants-int32-max": "^0.3.0",
4650
"@stdlib/constants-int32-min": "^0.2.2",
4751
"@stdlib/math-base-assert-is-nan": "^0.2.2",
4852
"@stdlib/math-base-special-round": "^0.3.0",
4953
"@stdlib/number-float64-base-to-int32": "^0.2.2",
54+
"@stdlib/random-array-discrete-uniform": "^0.2.1",
5055
"@stdlib/random-base-discrete-uniform": "^0.2.1",
5156
"@stdlib/random-base-minstd": "^0.2.1",
5257
"@stdlib/random-base-randu": "^0.2.1",
5358
"@stdlib/string-left-pad": "^0.2.2",
5459
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
5560
"@stdlib/utils-keys": "^0.2.2",
61+
"@stdlib/utils-try-require": "^0.2.2",
5662
"proxyquire": "^2.0.0",
5763
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5864
"istanbul": "^0.4.1",

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

3636
tape( 'the exported object contains key-value pairs', function test( t ) {
3737
var keys = objectKeys( ns );
38-
t.equal( keys.length > 0, true, 'has keys' );
38+
t.strictEqual( keys.length > 0, true, 'has keys' );
3939
t.end();
4040
});

0 commit comments

Comments
 (0)