Angular.io states that filtering and sorting should not be done in a Pipe due to the amount of calls per-second it will make, however, in the community, there is no shortage of examples and tutorials on doing it with a Pipe.
What is the ideal way to implement a pre/post-sort in a template, without mutating the original data and still have a reference to the original data?
I am coming from Vue.js, my first thought is a computed property, which may be close to a 'get' in angular??, but not sure.