File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,4 +81,5 @@ Gemfile
8181Tests /config.json
8282
8383snyk_output.log
84- talisman_output.log
84+ talisman_output.log
85+ Tests /config.json
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Foundation
99/// Information regarding an error received from Contentstack's Image Delivery API.
1010public struct ImageTransformError : Error , CustomDebugStringConvertible {
1111 /// Human redable error Message
12- internal let message : String
12+ public let message : String
1313
1414 public var debugDescription : String {
1515 return message
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ internal extension Array {
2929 }
3030}
3131
32- internal extension String {
32+ public extension String {
3333 // Will make a `URL` from the current `String` instance if possible.
3434 func toURL( ) throws -> URL {
3535 guard var urlComponents = URLComponents ( string: self ) else {
@@ -90,7 +90,7 @@ internal extension String {
9090 return url
9191 }
9292
93- func isHexColor( ) -> Bool {
93+ internal func isHexColor( ) -> Bool {
9494 let hexColorRegex3Deci = " [0-9A-Fa-f]{3} "
9595 let hexColorPred3Deci = NSPredicate ( format: " SELF MATCHES %@ " , hexColorRegex3Deci)
9696
You can’t perform that action at this time.
0 commit comments