Quick update on ngx-transforms the reverse pipe now handles arrays. Before, it only reversed strings. Now it does both:  {{ 'Hello' | reverse }} → 'olleH'  {{ [1, 2, 3, 4, 5] | reverse }} → [5, 4, 3, 2, 1]  {{ ['a', 'b', 'c'] | reverse }} → ['c', 'b', 'a'] It never mutates the original array. Spread + reverse under the hood, so Angular's change detection stays happy. This was a small change, but it came from a real need sorting UI lists, reversing timelines, and flipping table rows. Things you'd normally write a one-off helper for. Now it's just a pipe. npm i ngx-transforms https://lnkd.in/dRYZts_V If you find this useful, a star on the repo helps other developers find it. #Angular #TypeScript #OpenSource #WebDevelopment #Frontend

To view or add a comment, sign in

Explore content categories