Created
January 12, 2020 09:08
-
-
Save keremk/fa12933da5bf6a36002a7e1af1720270 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func fetchPreviewImage(imageName: String, size: ImageSizeable, fetcher: () -> CGImage?) -> CGImage? { | |
#if PREVIEW | |
return loadPreviewImage(name: imageName, size: size) | |
#else | |
return fetcher() | |
#endif | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment