Server IP : 150.95.80.236 / Your IP : 3.137.167.205 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"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function frId(value) { var v = value.toUpperCase(); if (!/^(1|2)\d{2}\d{2}(\d{2}|\d[A-Z]|\d{3})\d{2,3}\d{3}\d{2}$/.test(v)) { return { meta: {}, valid: false, }; } var cog = v.substr(5, 2); switch (true) { case /^\d{2}$/.test(cog): v = value; break; case cog === '2A': v = value.substr(0, 5) + "19" + value.substr(7); break; case cog === '2B': v = value.substr(0, 5) + "18" + value.substr(7); break; default: return { meta: {}, valid: false, }; } var mod = 97 - (parseInt(v.substr(0, 13), 10) % 97); var prefixWithZero = mod < 10 ? "0" + mod : "" + mod; return { meta: {}, valid: prefixWithZero === v.substr(13), }; } exports.default = frId; });