mirror of
https://github.com/nicklockwood/SwiftFormat.git
synced 2026-05-17 10:30:35 +00:00
4 lines
141 B
Swift
4 lines
141 B
Swift
func runLater(_ function: @escaping @Sendable () -> Void) {
|
|
DispatchQueue.global().asyncAfter(deadline: .now() + 3, execute: function)
|
|
}
|