(self: ReadonlyRecord<K, A>)
| 989 | * @since 2.0.0 |
| 990 | */ |
| 991 | export const values = <K extends string, A>(self: ReadonlyRecord<K, A>): Array<A> => collect(self, (_, a) => a) |
| 992 | |
| 993 | /** |
| 994 | * Adds a new key-value pair or update an existing key's value in a record. |