That fuck shit the fascists are using
at master 19 lines 343 B view raw
1/* 2 * Copyright 2023 Signal Messenger, LLC 3 * SPDX-License-Identifier: AGPL-3.0-only 4 */ 5 6@file:JvmName("ProtoUtil") 7 8import okio.ByteString 9 10object ProtoUtil { 11 12 fun ByteString?.isNotEmpty(): Boolean { 13 return this != null && this.size > 0 14 } 15 16 fun ByteString?.isNullOrEmpty(): Boolean { 17 return this == null || this.size == 0 18 } 19}