Skip to content

Commit bcf791e

Browse files
committed
Auto-generated commit
1 parent e717aab commit bcf791e

4 files changed

Lines changed: 21 additions & 6 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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: 5 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-05-11)
7+
## Unreleased (2026-05-31)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`fe7c274`](https://github.com/stdlib-js/stdlib/commit/fe7c2746799f98c42a15f5ab2240676bb9b5987d) - **docs:** fix errors and inconsistencies in `@stdlib/string` TypeScript declarations [(#12390)](https:-/github.com/stdlib-js/stdlib/pull/12390) _(by Philipp Burckhardt, Athan Reines)_
1516
- [`aa8d436`](https://github.com/stdlib-js/stdlib/commit/aa8d436e7f5bcab413e101bc9954e9e15d162d5d) - **bench:** refactor to use string interpolation in `@stdlib/string` [(#11456)](https:-/github.com/stdlib-js/stdlib/pull/11456) _(by Uday Kakade, Karan Anand)_
1617

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

2526
### Contributors
2627

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

30+
- Athan Reines
2931
- Karan Anand
32+
- Philipp Burckhardt
3033
- Uday Kakade
3134

3235
</section>

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ interface Options {
4444
* @param str - input string
4545
* @param n - number of characters to return
4646
* @param options - options
47-
* @returns updated string
47+
* @returns output string
4848
*
4949
* @example
5050
* var out = first( 'last man standing', 2 );
@@ -63,7 +63,7 @@ declare function first( str: string, n: number, options?: Options ): string;
6363
*
6464
* @param str - input string
6565
* @param options - options
66-
* @returns updated string
66+
* @returns output string
6767
*
6868
* @example
6969
* var out = first( 'last man standing', {
@@ -84,7 +84,7 @@ declare function first( str: string, options?: Options ): string;
8484
*
8585
* @param str - input string
8686
* @param n - number of characters to return (default: 1)
87-
* @returns updated string
87+
* @returns output string
8888
*
8989
* @example
9090
* var out = first( 'last man standing' );

0 commit comments

Comments
 (0)