Skip to content

Instantly share code, notes, and snippets.

@chriswill0w
Created July 8, 2018 13:50
Show Gist options
  • Select an option

  • Save chriswill0w/d2a160ee57e93c07bae94b636dd36508 to your computer and use it in GitHub Desktop.

Select an option

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