File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ export { isDoc } from "./doc.ts";
1919export { isCell , isStream } from "./cell.ts" ;
2020export {
2121 getCellLinkOrThrow ,
22- getCellLinkOrValue ,
2322 isQueryResult ,
2423 isQueryResultForDereferencing ,
2524} from "./query-result-proxy.ts" ;
Original file line number Diff line number Diff line change @@ -301,17 +301,6 @@ function isProxyForArrayValue(value: any): value is ProxyForArrayValue {
301301 return isRecord ( value ) && originalIndex in value ;
302302}
303303
304- /**
305- * Get cell link or return values as is if not a cell value proxy.
306- *
307- * @param {any } value - The value to get the cell link or value from.
308- * @returns {LegacyDocCellLink | any }
309- */
310- export function getCellLinkOrValue ( value : any ) : LegacyDocCellLink {
311- if ( isQueryResult ( value ) ) return value [ getCellLink ] ;
312- else return value ;
313- }
314-
315304/**
316305 * Get cell link or throw if not a cell value proxy.
317306 *
You can’t perform that action at this time.
0 commit comments