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

@Pipe({
  name: 'encodeUri'
})
export class EncodeUriPipe implements PipeTransform {
  transform(value: any): any {
    return encodeURIComponent(value);
  }
}