Skip to content

Instantly share code, notes, and snippets.

@chandermani
chandermani / orderBy.ts
Created March 28, 2016 03:06
orderBy pipe in Angular2
@Pipe({
name: 'orderBy'
})
export class OrderByPipe {
transform(value: Array<any>, args: any[]): any {
let field: string = args[0];
if(value==null) {
return null;
}
if (field.startsWith("-")) {