Hi. I have been looking through this example for my project: https://www.telerik.com/kendo-angular-ui/components/grid/editing/editing-reactive-forms/
Can somebody explain to me what ngOnInit does? Particularly `this.editService.pipe...` It seems like it's calling all the data and assigning it to `this.view.` I specially don't get what "pipe" does because the editService doesn't seem to have a method called "pipe" either. Anyway, if someone can clarify what's happening here, that'd be great. Thank you
public ngOnInit(): void {
this.view = this.editSerivce.pipe(
map((data) => process(data, this.gridState))
}