Skip to content

Instantly share code, notes, and snippets.

@denzildoyle
Last active March 11, 2017 19:51
Show Gist options
  • Save denzildoyle/a915b60b5917e00477a430e8bcb34f83 to your computer and use it in GitHub Desktop.
Save denzildoyle/a915b60b5917e00477a430e8bcb34f83 to your computer and use it in GitHub Desktop.
Create filter to filter out domain only from url
app.filter( 'domain', function () {
return function ( input ) {
var parser = document.createElement('a');
parser.href = input;
return parser.hostname;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment