A simple input mask directive for AngularJS. It's currently only for numeric characters.
First, replace the module name with yours.
angular.module('yourModuleName').directive('inputMask', ...) // replace module name
Using it is as simple as follows
<input type="text" input-mask="xx / xx / xxxx" ng-model="$ctrl.myModel"/>