Server IP : 150.95.80.236 / Your IP : 18.118.10.18 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/formvalidation/dist/amd/validators/id/ |
Upload File : |
define(["require", "exports", "../../utils/isValidDate"], function (require, exports, isValidDate_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function krId(value) { var v = value.replace('-', ''); if (!/^\d{13}$/.test(v)) { return { meta: {}, valid: false, }; } var sDigit = v.charAt(6); var year = parseInt(v.substr(0, 2), 10); var month = parseInt(v.substr(2, 2), 10); var day = parseInt(v.substr(4, 2), 10); switch (sDigit) { case '1': case '2': case '5': case '6': year += 1900; break; case '3': case '4': case '7': case '8': year += 2000; break; default: year += 1800; break; } if (!(0, isValidDate_1.default)(year, month, day)) { return { meta: {}, valid: false, }; } var weight = [2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 4, 5]; var length = v.length; var sum = 0; for (var i = 0; i < length - 1; i++) { sum += weight[i] * parseInt(v.charAt(i), 10); } var checkDigit = (11 - (sum % 11)) % 10; return { meta: {}, valid: "" + checkDigit === v.charAt(length - 1), }; } exports.default = krId; });