MCPcopy
hub / github.com/drizzle-team/drizzle-orm / isTable

Function isTable

drizzle-orm/src/table.ts:120–122  ·  view source on GitHub ↗
(table: unknown)

Source from the content-addressed store, hash-verified

118}
119
120export function isTable(table: unknown): table is Table {
121 return typeof table === 'object' && table !== null && IsDrizzleTable in table;
122}
123
124/**
125 * Any table with a specified boundary.

Callers 8

getColumnsFunction · 0.90
handleColumnsFunction · 0.90
getColumnsFunction · 0.90
handleColumnsFunction · 0.90
getColumnsFunction · 0.90
handleColumnsFunction · 0.90
getColumnsFunction · 0.90
handleColumnsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected