Skip to content
View MiktatMertCento's full-sized avatar
🪲
Looking For Bugs
🪲
Looking For Bugs

Block or report MiktatMertCento

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Turkish: Javascript tc kimlik no doğ... Turkish: Javascript tc kimlik no doğrulama, English: Javascript turkish identity number validator.
    1
    export function tcNoValidate(tcNo) {
    2
        tcNo = tcNo.toString();
    3
        if (tcNo.length !== 11) return false;
    4
        if (tcNo[0] === '0') return false;
    5
        let tekToplam = 0, ciftToplam = 0, genelToplam = 0;