TM-SGNL-iOS/SignalServiceKit/Util/Platform.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

21 lines
379 B
Swift

//
// Copyright 2019 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
@objc
public class Platform: NSObject {
@objc
public static let isSimulator: Bool = {
let isSim: Bool
#if targetEnvironment(simulator)
isSim = true
#else
isSim = false
#endif
return isSim
}()
}