mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 12:21:23 +00:00
6 lines
235 B
TypeScript
6 lines
235 B
TypeScript
import { LocalStorageUtility, StorageKey } from "../Shared/StorageUtility";
|
|
|
|
export function shouldEnableCrossPartitionKey(): boolean {
|
|
return LocalStorageUtility.getEntryString(StorageKey.IsCrossPartitionQueryEnabled) === "true";
|
|
}
|