8 lines
164 B
Swift
8 lines
164 B
Swift
|
import Foundation
|
||
|
|
||
|
extension Bundle {
|
||
|
var isAppExtension: Bool {
|
||
|
return bundleURL.pathExtension.caseInsensitiveCompare("appex") == .orderedSame
|
||
|
}
|
||
|
}
|