mirror of
https://github.com/SagerNet/sing-box-for-apple.git
synced 2026-05-04 11:32:29 +00:00
ef08a1052b
Co-authored-by: Xiang <xfqz86@163.com>
13 lines
234 B
Swift
13 lines
234 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
public extension Bool {
|
|
func toString() -> String {
|
|
if self {
|
|
return String(localized: "true")
|
|
} else {
|
|
return String(localized: "false")
|
|
}
|
|
}
|
|
}
|