mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
7 lines
114 B
Swift
7 lines
114 B
Swift
@MainActor
|
|
func skipMainRunLoopCycles(_ count: Int) async {
|
|
for _ in 0..<count+1 {
|
|
await Task.yield()
|
|
}
|
|
}
|