Files
Desktop/ts/util/isProtoBinaryEncodingEnabled.ts
2025-09-16 17:39:03 -07:00

14 lines
302 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isTestOrMockEnvironment } from '../environment.js';
export function isProtoBinaryEncodingEnabled(): boolean {
if (isTestOrMockEnvironment()) {
return true;
}
// TODO: DESKTOP-8938
return false;
}