MCPcopy Create free account
hub / github.com/TanStack/db / hasOwnSyncKey

Function hasOwnSyncKey

packages/db-sqlite-persistence-core/src/persisted.ts:544–546  ·  view source on GitHub ↗
(options: object)

Source from the content-addressed store, hash-verified

542}
543
544function hasOwnSyncKey(options: object): options is { sync: unknown } {
545 return Object.prototype.hasOwnProperty.call(options, `sync`)
546}
547
548function isRecord(value: unknown): value is Record<string, unknown> {
549 return typeof value === `object` && value !== null

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected