summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/milliseconds.pipe.ts
blob: b0dc68604a789e4bbf6732b2682e429096116f8a (plain)
1
2
3
4
5
6
7
8
9
10
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'milliseconds'
})
export class MillisecondsPipe implements PipeTransform {
  transform(value: any): any {
    return `${value} ms`;
  }
}