Skip to content

Commit 31465ea

Browse files
committed
Auto-generated commit
1 parent a5c39a1 commit 31465ea

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-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-06-23)
7+
## Unreleased (2025-06-24)
88

99
<section class="features">
1010

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

3737
<details>
3838

39+
- [`11b42d7`](https://github.com/stdlib-js/stdlib/commit/11b42d7053cd31a2327afaef0d0ac7289346f1c1) - **docs:** update REPL namespace documentation [(#7471)](https://github.com/stdlib-js/stdlib/pull/7471) _(by stdlib-bot)_
3940
- [`28f9979`](https://github.com/stdlib-js/stdlib/commit/28f99791e07b4d5bc48b1d6ca42662208211cd8b) - **docs:** update REPL namespace documentation [(#7457)](https://github.com/stdlib-js/stdlib/pull/7457) _(by stdlib-bot, Philipp Burckhardt)_
4041
- [`0902a5b`](https://github.com/stdlib-js/stdlib/commit/0902a5b8ec9f8209d253e5fff7c0a73ec082cee7) - **docs:** update REPL namespace documentation [(#7444)](https://github.com/stdlib-js/stdlib/pull/7444) _(by stdlib-bot)_
4142
- [`05e4da8`](https://github.com/stdlib-js/stdlib/commit/05e4da8247ce01c4b57c33b841094659f6823e36) - **docs:** update REPL namespace documentation [(#7432)](https://github.com/stdlib-js/stdlib/pull/7432) _(by stdlib-bot, Philipp Burckhardt)_

data/data.csv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3738,6 +3738,8 @@ isString.isObject,"var bool = isString.isObject( new String( 'beep' ) )\nbool =
37383738
isStringArray,"var bool = isStringArray( [ 'abc', 'def' ] )\nbool = isStringArray( [ 'abc', 123 ] )\n"
37393739
isStringArray.primitives,"var arr = [ 'abc', 'def' ];\nvar bool = isStringArray.primitives( arr )\narr = [ 'abc', new String( 'def' ) ];\nbool = isStringArray.primitives( arr )\n"
37403740
isStringArray.objects,"var arr = [ new String( 'ab' ), new String( 'cd' ) ];\nvar bool = isStringArray.objects( arr )\narr = [ new String( 'abc' ), 'def' ];\nbool = isStringArray.objects( arr )\n"
3741+
isStruct,"var schema = [ { 'name': 'foo', 'type': 'float64' } ];\nvar S = structFactory( schema );\nvar bool = isStruct( new S() )\nbool = isStruct( [ 1, 2, 3, 4 ] )\nbool = isStruct( 3.14 )\nbool = isStruct( {} )\n"
3742+
isStructConstructorLike,"var schema = [ { 'name': 'foo', 'type': 'float64' } ];\nvar S = structFactory( schema );\nvar bool = isStructConstructorLike( S )\nbool = isStructConstructorLike( [ 1, 2, 3, 4 ] )\nbool = isStructConstructorLike( 3.14 )\nbool = isStructConstructorLike( {} )\n"
37413743
isSymbol,"var bool = isSymbol( Symbol( 'beep' ) )\nbool = isSymbol( Object( Symbol( 'beep' ) ) )\nbool = isSymbol( {} )\nbool = isSymbol( null )\nbool = isSymbol( true )\n"
37423744
isSymbolArray,"var bool = isSymbolArray( [ Symbol( 'beep' ), Symbol( 'boop' ) ] )\nbool = isSymbolArray( Symbol( 'beep' ) )\nbool = isSymbolArray( [] )\nbool = isSymbolArray( {} )\nbool = isSymbolArray( null )\nbool = isSymbolArray( true )\n"
37433745
isSymbolArray.primitives,"var bool = isSymbolArray.primitives( [ Symbol( 'beep' ) ] )\nbool = isSymbolArray.primitives( [ Object( Symbol( 'beep' ) ) ] )\nbool = isSymbolArray.primitives( [] )\nbool = isSymbolArray.primitives( {} )\nbool = isSymbolArray.primitives( null )\nbool = isSymbolArray.primitives( true )\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)