0.14.0 • Published 5 years ago

ng-orderby-pipe v0.14.0

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

ng-orderby-pipe

angular orderby pipe for array of strings and objects

orderBy:key:desc/asc (default asc)

1)Order an array of strings

*ngFor="let value of values| orderBy

2)Order an array of objects

*ngFor="let value of values| orderBy:'brand':'desc'"

3)Order an array of objects with nested object

*ngFor="let value of values| orderBy:'config.memory'"