Created
January 15, 2019 23:40
-
-
Save jimmythai/48b077b2c4e8f2b594ba822b5e3a0fda 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
| extension Data { | |
| var hexadecimalString: String { | |
| return self.map { String(format: "%02.2hhx", $0) }.joined() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment