Skip to content

Commit 8f4585d

Browse files
committed
Auto-generated commit
1 parent c85e5d6 commit 8f4585d

File tree

6 files changed

+20
-4
lines changed

6 files changed

+20
-4
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-11-07)
7+
## Unreleased (2025-12-17)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`944d850`](https://github.com/stdlib-js/stdlib/commit/944d8507e3098c835182bc77b48f56b21e9f829f) - add `isAlmostSameValue` to namespace
14+
- [`cb49481`](https://github.com/stdlib-js/stdlib/commit/cb494813a263590bf130b84692170027034bfe9b) - add `number/float64/base/assert/is-almost-same-value`
1315
- [`f114dad`](https://github.com/stdlib-js/stdlib/commit/f114dad17c4ab240701b7c67aeb313aac7831eb7) - update `number/float64/base/assert` TypeScript declarations
1416
- [`0cf2dd6`](https://github.com/stdlib-js/stdlib/commit/0cf2dd65ae1a209d306184a82c4226742bfa6103) - add `isAlmostEqual` exports to namespaces
1517
- [`d10932c`](https://github.com/stdlib-js/stdlib/commit/d10932c2a1f70d4b26332abd0bc80ea09848618a) - add `number/float64/base/assert/is-almost-equal`
@@ -25,6 +27,8 @@
2527

2628
<details>
2729

30+
- [`944d850`](https://github.com/stdlib-js/stdlib/commit/944d8507e3098c835182bc77b48f56b21e9f829f) - **feat:** add `isAlmostSameValue` to namespace _(by Athan Reines)_
31+
- [`cb49481`](https://github.com/stdlib-js/stdlib/commit/cb494813a263590bf130b84692170027034bfe9b) - **feat:** add `number/float64/base/assert/is-almost-same-value` _(by Athan Reines)_
2832
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
2933
- [`f114dad`](https://github.com/stdlib-js/stdlib/commit/f114dad17c4ab240701b7c67aeb313aac7831eb7) - **feat:** update `number/float64/base/assert` TypeScript declarations _(by Philipp Burckhardt)_
3034
- [`0cf2dd6`](https://github.com/stdlib-js/stdlib/commit/0cf2dd65ae1a209d306184a82c4226742bfa6103) - **feat:** add `isAlmostEqual` exports to namespaces _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ Mahfuza Humayra Mohona <[email protected]>
120120
121121
Manik Sharma <[email protected]>
122122
Manvith M <[email protected]>
123+
Mara Averick <[email protected]>
123124
Marcus Fantham <[email protected]>
124125
Matt Cochrane <[email protected]>
125126
Mihir Pandit <[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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ var ns = {};
4545
*/
4646
setReadOnly( ns, 'isAlmostEqual', require( '@stdlib/number-float64-base-assert-is-almost-equal' ) );
4747

48+
/**
49+
* @name isAlmostSameValue
50+
* @memberof ns
51+
* @readonly
52+
* @type {Function}
53+
* @see {@link module:@stdlib/number/float64/base/assert/is-almost-same-value}
54+
*/
55+
setReadOnly( ns, 'isAlmostSameValue', require( '@stdlib/number-float64-base-assert-is-almost-same-value' ) );
56+
4857
/**
4958
* @name isSameValue
5059
* @memberof ns

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
},
3838
"dependencies": {
3939
"@stdlib/number-float64-base-assert-is-almost-equal": "github:stdlib-js/number-float64-base-assert-is-almost-equal#main",
40+
"@stdlib/number-float64-base-assert-is-almost-same-value": "github:stdlib-js/number-float64-base-assert-is-almost-same-value#main",
4041
"@stdlib/number-float64-base-assert-is-same-value": "^0.2.1",
4142
"@stdlib/number-float64-base-assert-is-same-value-zero": "^0.1.1",
4243
"@stdlib/utils-define-read-only-property": "^0.2.2"
@@ -45,6 +46,7 @@
4546
"@stdlib/assert-is-boolean": "^0.2.2",
4647
"@stdlib/boolean-ctor": "^0.2.2",
4748
"@stdlib/constants-float64-eps": "^0.2.2",
49+
"@stdlib/math-base-assert-is-nan": "^0.2.2",
4850
"@stdlib/number-float64-base-ulp-difference": "github:stdlib-js/number-float64-base-ulp-difference#main",
4951
"@stdlib/utils-keys": "^0.2.2",
5052
"@stdlib/utils-try-require": "^0.2.2",

0 commit comments

Comments
 (0)