Skip to content

Commit 988cd8f

Browse files
committed
Auto-generated commit
1 parent acfe4ee commit 988cd8f

7 files changed

Lines changed: 31 additions & 15 deletions

File tree

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2026-06-03T03:31:27.547Z

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

.npmrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,16 @@ save = false
2929

3030
# Do not generate provenance metadata:
3131
provenance = false
32+
33+
# Prefer cached dependencies during install:
34+
prefer-offline = true
35+
36+
# Require signing Git commits and tags when using `npm version`:
37+
sign-git-commit = true
38+
sign-git-tag = true
39+
40+
# Run Git commit hooks when using `npm version`:
41+
commit-hooks = true
42+
43+
# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
44+
min-release-age = 90

CHANGELOG.md

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

7-
## Unreleased (2026-04-17)
7+
## Unreleased (2026-06-03)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`92a3a2a`](https://github.com/stdlib-js/stdlib/commit/92a3a2affa596b463c2752b9858d0843f225fdc8) - **docs:** update examples to workaround lint bug _(by Athan Reines)_
1516
- [`67c0a20`](https://github.com/stdlib-js/stdlib/commit/67c0a2044e515ea6733765a48be54f09ea749d8f) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11398)](https:-/github.com/stdlib-js/stdlib/pull/11398) _(by Karan Anand)_
1617

1718
</details>
@@ -24,8 +25,9 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

30+
- Athan Reines
2931
- Karan Anand
3032

3133
</section>

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.

docs/types/index.d.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@
2525
* @returns boolean indicating whether an input value is an array-like object containing only functions
2626
*
2727
* @example
28-
* function beep() {}
28+
* var noop = require( '@stdlib/utils-noop' );
2929
*
30-
* function boop() {}
31-
*
32-
* var bool = isFunctionArray( [ beep, boop ] );
30+
* var bool = isFunctionArray( [ noop, noop ] );
3331
* // returns true
3432
*
35-
* bool = isFunctionArray( [ {}, beep ] );
33+
* bool = isFunctionArray( [ {}, noop ] );
3634
* // returns false
3735
*
3836
* bool = isFunctionArray( [] );

lib/index.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,13 @@
2424
* @module @stdlib/assert-is-function-array
2525
*
2626
* @example
27+
* var noop = require( '@stdlib/utils-noop' );
2728
* var isFunctionArray = require( '@stdlib/assert-is-function-array' );
2829
*
29-
* function beep() {}
30-
*
31-
* function boop() {}
32-
*
33-
* var bool = isFunctionArray( [ beep, boop ] );
30+
* var bool = isFunctionArray( [ noop, noop ] );
3431
* // returns true
3532
*
36-
* bool = isFunctionArray( [ {}, beep ] );
33+
* bool = isFunctionArray( [ {}, noop ] );
3734
* // returns false
3835
*
3936
* bool = isFunctionArray( [] );

0 commit comments

Comments
 (0)