(str: string)
| 384 | * |
| 385 | * This function allows you to hash an object by considering only specific keys, |
| 386 | * which is useful when you want to create a hash based on a subset of an object's |
| 387 | * properties. |
| 388 | * |
| 389 | * **Example** (Hashing selected object keys) |
| 390 | * |
| 391 | * ```ts import.meta.vitest |
| 392 | * import { Hash } from "effect" |
| 393 | * |
| 394 | * const person = { name: "John", age: 30, city: "New York" } |
| 395 | * |
no test coverage detected
searching dependent graphs…