]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/object-length.pipe.ts
Improve frontend accessibility
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / misc / object-length.pipe.ts
CommitLineData
244e76a5
RK
1import { Pipe, PipeTransform } from '@angular/core'
2
3@Pipe({ name: 'myObjectLength' })
4export class ObjectLengthPipe implements PipeTransform {
5 transform (value: Object) {
6 return Object.keys(value).length
7 }
8}