chore: update packages (#3132)

* chore: update packages

* start tunnel messaging

* chore: standalone

* pbpaste instead

---------

Co-authored-by: Matt Hill <mattnine@protonmail.com>
This commit is contained in:
Alex Inkin
2026-03-09 19:53:47 +04:00
committed by GitHub
parent a4bae73592
commit be921b7865
66 changed files with 1868 additions and 1803 deletions

View File

@@ -0,0 +1,11 @@
import { Pipe, PipeTransform } from '@angular/core'
import { isEmptyObject } from '../util/misc.util'
@Pipe({
name: 'empty',
})
export class EmptyPipe implements PipeTransform {
transform(val: object | [] = {}): boolean {
return Array.isArray(val) ? !val.length : isEmptyObject(val)
}
}