Skip to content

Commit 485da49

Browse files
committed
Auto-generated commit
1 parent 391f1c5 commit 485da49

5 files changed

Lines changed: 18 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Features
1212

13+
- [`05579b9`](https://github.com/stdlib-js/stdlib/commit/05579b92d37e65644945028a3d12ba8d0b36f188) - add `mul` to namespace
14+
- [`169c8cb`](https://github.com/stdlib-js/stdlib/commit/169c8cb745f97bbb0260c82fa4f7ccc56d3b9ed7) - add `number/uint8/base/mul`
1315
- [`465c484`](https://github.com/stdlib-js/stdlib/commit/465c484235dbfba4c323c9913c4091e6d628374a) - add `sub` to namespace
1416
- [`c310956`](https://github.com/stdlib-js/stdlib/commit/c3109561991e395abc5a2724d09c25028425e5a2) - add `number/uint8/base/sub`
1517
- [`0118405`](https://github.com/stdlib-js/stdlib/commit/0118405267e70154055052368896b1337d951e43) - add `add` to namespace
@@ -25,6 +27,9 @@
2527

2628
<details>
2729

30+
- [`05579b9`](https://github.com/stdlib-js/stdlib/commit/05579b92d37e65644945028a3d12ba8d0b36f188) - **feat:** add `mul` to namespace _(by Athan Reines)_
31+
- [`169c8cb`](https://github.com/stdlib-js/stdlib/commit/169c8cb745f97bbb0260c82fa4f7ccc56d3b9ed7) - **feat:** add `number/uint8/base/mul` _(by Athan Reines)_
32+
- [`590e647`](https://github.com/stdlib-js/stdlib/commit/590e647bd818c098689676a4d977bc36b11bfb94) - **docs:** fix description _(by Athan Reines)_
2833
- [`465c484`](https://github.com/stdlib-js/stdlib/commit/465c484235dbfba4c323c9913c4091e6d628374a) - **feat:** add `sub` to namespace _(by Athan Reines)_
2934
- [`c310956`](https://github.com/stdlib-js/stdlib/commit/c3109561991e395abc5a2724d09c25028425e5a2) - **feat:** add `number/uint8/base/sub` _(by Athan Reines)_
3035
- [`e21f523`](https://github.com/stdlib-js/stdlib/commit/e21f5234efd9048dbd9a8de6ecf6f72a33d758d2) - **docs:** fix return value _(by Athan Reines)_

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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ setReadOnly( ns, 'add', require( '@stdlib/number-uint8-base-add' ) );
5454
*/
5555
setReadOnly( ns, 'fromBinaryStringUint8', require( '@stdlib/number-uint8-base-from-binary-string' ) );
5656

57+
/**
58+
* @name mul
59+
* @memberof ns
60+
* @readonly
61+
* @type {Function}
62+
* @see {@link module:@stdlib/number/uint8/base/mul}
63+
*/
64+
setReadOnly( ns, 'mul', require( '@stdlib/number-uint8-base-mul' ) );
65+
5766
/**
5867
* @name sub
5968
* @memberof ns

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"dependencies": {
3939
"@stdlib/number-uint8-base-add": "github:stdlib-js/number-uint8-base-add#main",
4040
"@stdlib/number-uint8-base-from-binary-string": "^0.2.2",
41+
"@stdlib/number-uint8-base-mul": "github:stdlib-js/number-uint8-base-mul#main",
4142
"@stdlib/number-uint8-base-sub": "github:stdlib-js/number-uint8-base-sub#main",
4243
"@stdlib/number-uint8-base-to-binary-string": "^0.2.2",
4344
"@stdlib/utils-define-read-only-property": "^0.2.2"

0 commit comments

Comments
 (0)