Skip to content

Commit d60e17c

Browse files
committed
Auto-generated commit
1 parent ed331be commit d60e17c

File tree

5 files changed

+21
-12
lines changed

5 files changed

+21
-12
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

Lines changed: 4 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-09-06)
7+
## Unreleased (2025-09-10)
88

99
<section class="features">
1010

@@ -23,6 +23,7 @@
2323

2424
### Bug Fixes
2525

26+
- [`1b9a036`](https://github.com/stdlib-js/stdlib/commit/1b9a036d676b247bf502c4ede08635b99fa611ca) - allow correct values for `returns` option
2627
- [`eeb9d6f`](https://github.com/stdlib-js/stdlib/commit/eeb9d6fdc2e3faa3116c84f276e88737ba11196f) - remove unused imports
2728

2829
</section>
@@ -159,6 +160,8 @@ A total of 8 issues were closed in this release:
159160

160161
<details>
161162

163+
- [`1b9a036`](https://github.com/stdlib-js/stdlib/commit/1b9a036d676b247bf502c4ede08635b99fa611ca) - **fix:** allow correct values for `returns` option _(by Philipp Burckhardt)_
164+
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
162165
- [`6bb3c64`](https://github.com/stdlib-js/stdlib/commit/6bb3c64c915bb33715e5256fa8073e46b9a4d443) - **docs:** update examples in TSDoc comments in `utils/async` for doctesting _(by Philipp Burckhardt)_
163166
- [`18b2372`](https://github.com/stdlib-js/stdlib/commit/18b2372476178bcaa6bd7ddc69396f0e87dc93f2) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
164167
- [`57b828d`](https://github.com/stdlib-js/stdlib/commit/57b828d10a9b20f3003482557132723a79d27c66) - **chore:** fix JavaScript lint errors [(#8003)](https://github.com/stdlib-js/stdlib/pull/8003) _(by DUDHAT HEMIL PRAVINKUMAR, Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Frank Kovacs <[email protected]>
6666
GK Bishnoi <[email protected]>
6767
GURU PRASAD SHARMA <[email protected]>
6868
69+
Gaurav Kaushik <[email protected]>
6970
Gautam Kaushik <[email protected]>
7071
Gautam sharma <[email protected]>
7172

define-memoized-property/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { PropertyName, DataPropertyDescriptor } from '@stdlib/types/object';
3030
* return 'bar';
3131
* }
3232
*
33-
* var desc: PropertyDescriptor = {
33+
* var desc = PropertyDescriptor = {
3434
* 'configurable': false,
3535
* 'enumerable': false,
3636
* 'writable': false,

group-own/docs/types/index.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ interface Options {
2828
thisArg?: any;
2929

3030
/**
31-
* If `'values'`, values are returned; if `'indices'`, indices are returned; if `'*'`, both indices and values are returned.
31+
* If `'values'`, values are returned; if `'keys'`, keys are returned; if `'*'`, both keys and values are returned.
3232
*/
33-
returns?: 'values' | 'indices' | '*';
33+
returns?: 'values' | 'keys' | '*';
3434
}
3535

3636
/**
@@ -127,7 +127,7 @@ declare function groupOwn<T extends object, K extends string | symbol>(
127127
* @param obj - input object
128128
* @param options - function options
129129
* @param options.thisArg - execution context
130-
* @param options.returns - if `'values'`, values are returned; if `'indices'`, indices are returned; if `'*'`, both indices and values are returned (default: 'values')
130+
* @param options.returns - if `'values'`, values are returned; if `'keys'`, keys are returned; if `'*'`, both keys and values are returned (default: 'values')
131131
* @param indicator - indicator function indicating which group an element in the input object belongs to
132132
* @returns group results
133133
*
@@ -142,14 +142,14 @@ declare function groupOwn<T extends object, K extends string | symbol>(
142142
* 'd': 'date'
143143
* };
144144
* var opts = {
145-
* 'returns': 'indices'
145+
* 'returns': 'keys'
146146
* };
147147
* var out = groupOwn( obj, opts, indicator );
148148
* // e.g., returns { 'a': [ 'a' ], 'b': [ 'b' ], 'c': [ 'c' ], 'd': [ 'd' ] }
149149
*/
150150
declare function groupOwn<T extends object, K extends string | symbol>(
151151
obj: T,
152-
options: Options & { returns: 'indices' },
152+
options: Options & { returns: 'keys' },
153153
indicator: Indicator<T[keyof T], K>
154154
): { [P in K]: Array<keyof T> };
155155

@@ -174,7 +174,7 @@ declare function groupOwn<T extends object, K extends string | symbol>(
174174
* @param obj - input object
175175
* @param options - function options
176176
* @param options.thisArg - execution context
177-
* @param options.returns - if `'values'`, values are returned; if `'indices'`, indices are returned; if `'*'`, both indices and values are returned (default: 'values')
177+
* @param options.returns - if `'values'`, values are returned; if `'keys'`, keys are returned; if `'*'`, both keys and values are returned (default: 'values')
178178
* @param indicator - indicator function indicating which group an element in the input object belongs to
179179
* @returns group results
180180
*
@@ -221,7 +221,7 @@ declare function groupOwn<T extends object, K extends string | symbol>(
221221
* @param obj - input object
222222
* @param options - function options
223223
* @param options.thisArg - execution context
224-
* @param options.returns - if `'values'`, values are returned; if `'indices'`, indices are returned; if `'*'`, both indices and values are returned (default: 'values')
224+
* @param options.returns - if `'values'`, values are returned; if `'keys'`, keys are returned; if `'*'`, both keys and values are returned (default: 'values')
225225
* @param indicator - indicator function indicating which group an element in the input object belongs to
226226
* @returns group results
227227
*

0 commit comments

Comments
 (0)