Skip to content

Instantly share code, notes, and snippets.

@christopherkarani
Created September 19, 2019 07:27
Show Gist options
  • Save christopherkarani/694214e1e3434a7c0698e289958c8ac3 to your computer and use it in GitHub Desktop.
Save christopherkarani/694214e1e3434a7c0698e289958c8ac3 to your computer and use it in GitHub Desktop.
var millisecondsSince1970: Int {
return Int(self.timeIntervalSince1970.rounded())
}
init(milliseconds: Int) {
self = Date(timeIntervalSince1970: TimeInterval(milliseconds / 1000))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment