Guest User

Untitled

a guest
Jan 19th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /**
  2. * Description:
  3. * removes mail domain from emailId field.
  4. * Usage:
  5. * {{some_text | hidemaildomain}}
  6. */
  7.  
  8. app.filter('hidemaildomain', function () {
  9. return function (value) {
  10. return (!value) ? '' : value.replace(/@.*/g, '');
  11. };
  12. });
Add Comment
Please, Sign In to add comment