Skip to content

Instantly share code, notes, and snippets.

@coreyrothwell
Last active August 29, 2015 14:06
Show Gist options
  • Save coreyrothwell/8ee18e7b8b1e104e3f83 to your computer and use it in GitHub Desktop.
Save coreyrothwell/8ee18e7b8b1e104e3f83 to your computer and use it in GitHub Desktop.
Angularjs US Phone Filter
'use strict';
angular.module('whateverApp')
.filter('phone', function () {
return function (input) {
if(!input){
return '';
}
return input.replace(/(\d{3})(\d{3})(\d{4})/, '($1) $2-$3');
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment