(metaWindow)
| 3397 | * @returns |
| 3398 | */ |
| 3399 | export function isFloating(metaWindow) { |
| 3400 | if (!metaWindow) { |
| 3401 | return false; |
| 3402 | } |
| 3403 | let space = spaces.spaceOfWindow(metaWindow); |
| 3404 | return space.isFloating?.(metaWindow) ?? false; |
| 3405 | } |
| 3406 | |
| 3407 | export function isScratch(metaWindow) { |
| 3408 | if (!metaWindow) { |
no test coverage detected