Skip to content

Commit cb73f49

Browse files
committed
Auto-generated commit
1 parent a0758cb commit cb73f49

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-05-20)
7+
## Unreleased (2025-05-21)
88

99
<section class="features">
1010

@@ -36,6 +36,7 @@
3636

3737
<details>
3838

39+
- [`2f8ef39`](https://github.com/stdlib-js/stdlib/commit/2f8ef390ab6e8573cfa2c25b96c147f7aca01fdd) - **docs:** update REPL namespace documentation [(#7054)](https://github.com/stdlib-js/stdlib/pull/7054) _(by stdlib-bot)_
3940
- [`a317baf`](https://github.com/stdlib-js/stdlib/commit/a317baf0af91e23d7004c9327f6158b165513472) - **docs:** update REPL namespace documentation [(#7045)](https://github.com/stdlib-js/stdlib/pull/7045) _(by stdlib-bot)_
4041
- [`7c9de34`](https://github.com/stdlib-js/stdlib/commit/7c9de3413dc4e03b57dd1073e29ef5104d276c85) - **docs:** update REPL namespace documentation [(#7006)](https://github.com/stdlib-js/stdlib/pull/7006) _(by stdlib-bot)_
4142
- [`c0db872`](https://github.com/stdlib-js/stdlib/commit/c0db8723de95ebc1dc594eac720c4f468c812481) - **docs:** update REPL namespace documentation [(#6986)](https://github.com/stdlib-js/stdlib/pull/6986) _(by stdlib-bot)_

data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3506,6 +3506,7 @@ isEmptyString.isObject,"var bool = isEmptyString.isObject( new String( '' ) )\nb
35063506
isEnumerableProperty,"var beep = { 'boop': true };\nvar bool = isEnumerableProperty( beep, 'boop' )\nbool = isEnumerableProperty( beep, 'hasOwnProperty' )\n"
35073507
isEnumerablePropertyIn,"var obj = { 'boop': true };\nvar desc = {};\ndesc.configurable = true;\ndesc.enumerable = false;\ndesc.writable = true;\ndesc.value = true;\ndefineProperty( obj, 'beep', desc );\nvar bool = isEnumerablePropertyIn( obj, 'boop' )\nbool = isEnumerablePropertyIn( obj, 'beep' )\n"
35083508
isEqualArray,"var x = [ 1.0, 2.0, 3.0 ];\nvar y = [ 1.0, 2.0, 3.0 ];\nvar bool = isEqualArray( x, y )\nx = [ NaN, NaN, NaN ];\ny = [ NaN, NaN, NaN ];\nbool = isEqualArray( x, y )\n"
3509+
isEqualDateObject,"var d1 = new Date( 2024, 11, 31, 23, 59, 59, 999 );\nvar d2 = new Date( 2024, 11, 31, 23, 59, 59, 999 );\nvar bool = isEqualDateObject( d1, d2 )\nd1 = new Date( 2024, 11, 31, 23, 59, 59, 999 );\nd2 = new Date( 2024, 11, 31, 23, 59, 59, 78 );\nbool = isEqualDateObject( d1, d2 )\n"
35093510
isError,"var bool = isError( new Error( 'beep' ) )\nbool = isError( {} )\n"
35103511
isEvalError,"var bool = isEvalError( new EvalError( 'beep' ) )\nbool = isEvalError( {} )\n"
35113512
isEven,"var bool = isEven( 4.0 )\nbool = isEven( new Number( 4.0 ) )\nbool = isEven( 3.0 )\nbool = isEven( -3.14 )\nbool = isEven( null )\n"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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.

0 commit comments

Comments
 (0)