- Rename source module from RDReaderView to RDEpubReaderView - Move all source files from Sources/RDReaderView/ to Sources/RDEpubReaderView/ - Update podspec: RDReaderView.podspec -> RDEpubReaderView.podspec - Update Podfile, demo project, and CocoaPods config for new pod name - Delete old RDReaderView pod support files from ReadViewDemo/Pods - Add new RDEpubReaderView pod support files - Update documentation (API ref, architecture, UML, conventions, etc.) - Add FixedLayoutRotationTests - Update .gitignore: exclude .DS_Store, manual unpack backups, _ssoft-output
23 lines
662 B
Swift
23 lines
662 B
Swift
import Foundation
|
|
|
|
public struct RDEPUBCFITextAssertion: Codable, Equatable, Hashable {
|
|
|
|
public var prefix: String?
|
|
|
|
public var exact: String?
|
|
|
|
public var suffix: String?
|
|
|
|
public init(prefix: String? = nil, exact: String? = nil, suffix: String? = nil) {
|
|
self.prefix = Self.trimmedOrNil(prefix)
|
|
self.exact = Self.trimmedOrNil(exact)
|
|
self.suffix = Self.trimmedOrNil(suffix)
|
|
}
|
|
|
|
private static func trimmedOrNil(_ value: String?) -> String? {
|
|
guard let value else { return nil }
|
|
let trimmed = value.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
return trimmed.isEmpty ? nil : trimmed
|
|
}
|
|
}
|