Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lilbro1062000/2b63d829b8d4c2308ecc to your computer and use it in GitHub Desktop.
Save lilbro1062000/2b63d829b8d4c2308ecc to your computer and use it in GitHub Desktop.
/**
* Description:
* removes white space from text. useful for html values that cannot have spaces
* Usage:
* {{some_text | nospace}}
*/
app.filter('nospace', function () {
return function (value) {
return (!value) ? '' : value.replace(/ /g, '');
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment