()
| 1394 | * @since 4.0.0 |
| 1395 | */ |
| 1396 | export function entries<A>(): Iso<Record<string, A>, ReadonlyArray<readonly [string, A]>> { |
| 1397 | return make(primitiveNode("Iso", Object.entries, Object.fromEntries)) |
| 1398 | } |
| 1399 | |
| 1400 | /** |
| 1401 | * Prism that focuses on the value inside `Option.Some`. |
nothing calls this directly
no test coverage detected