(item: Record<string, unknown>)
| 111 | // "getKey" |
| 112 | const primaryPath = rxCollection.schema.primaryPath |
| 113 | function getKey(item: Record<string, unknown>): string { |
| 114 | const key: string = item[primaryPath] as string |
| 115 | return key |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * "sync" |
no outgoing calls
no test coverage detected