Skip to content

Instantly share code, notes, and snippets.

View cosmoarunn's full-sized avatar
🏠
Working from home

cosmoarunn

🏠
Working from home
View GitHub Profile
@Mez0
Mez0 / Date+Random.swift
Last active December 2, 2024 13:21
Swift Generate Random Date
extension Date {
static func random() -> Date {
let randomTime = TimeInterval(Int32.random(in: 0...Int32.max))
return Date(timeIntervalSince1970: randomTime)
}
}