UNPKG

ngacw-dpi

Version:

Validates input as Guatemalan DPI (Documento Personal de Identificación, something like a SSN)

16 lines (10 loc) • 313 B
(function(angular) { 'use strict'; angular.module('tests') .controller('DpiTestController', dpiTestController); dpiTestController.$inject = ['$log']; function dpiTestController($log) { var vm = this; vm.title = 'Enter DPI Information below'; } })(window.angular);