Skip to content

Instantly share code, notes, and snippets.

@chriswill0w
Created July 8, 2018 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriswill0w/d2a160ee57e93c07bae94b636dd36508 to your computer and use it in GitHub Desktop.
Save chriswill0w/d2a160ee57e93c07bae94b636dd36508 to your computer and use it in GitHub Desktop.
extension Data {
var sizeMB: String{
let formatter = ByteCountFormatter()
formatter.allowedUnits = [.useMB]
formatter.countStyle = .file
return formatter.string(fromByteCount: Int64(self.count))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment