Guest User

Untitled

a guest
Jan 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. * Description:
  3. * removes white space from text. useful for html values that cannot have spaces
  4. * Usage:
  5. * {{some_text | nospace}}
  6. */
  7. app.filter('nospace', function () {
  8. return function (value) {
  9. return (!value) ? '' : value.replace(/ /g, '');
  10. };
  11. });
Add Comment
Please, Sign In to add comment