mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-10-13 23:38:45 +01: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";
|
|
}
|