Skip to content

Instantly share code, notes, and snippets.

@MikeRyanDev
Created August 11, 2016 19:19
Show Gist options
  • Save MikeRyanDev/e241985ecab51f2cab674fe5d20c1654 to your computer and use it in GitHub Desktop.
Save MikeRyanDev/e241985ecab51f2cab674fe5d20c1654 to your computer and use it in GitHub Desktop.
import { Pipe } from '@angular/core';
@Pipe({ name: 'sortNames' })
export class SortNamesPipe {
transform(input: string[]): string[] {
return input.sort();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment