Files
Hacki/ios/StoryWidget/Extensions/Int+OrZero.swift
2025-01-20 01:12:44 -08:00

11 lines
165 B
Swift

import Foundation
extension Int? {
var orZero: Int {
guard let unwrapped = self else {
return 0
}
return unwrapped
}
}