Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 627 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 627 Bytes

Verify TC Number

This library can verify the Turkish citizenship number. verifyTC function returns a boolean value.

# with yarn
yarn add verify-tc

# with npm
npm install verify-tc

Example

const { verifyTC } = require('verify-tc');
// or
import { verifyTC } from 'verify-tc';

// Async/await
const isVerified = await verifyTC({
  name: 'Name',
  surname: 'Surname',
  tcNumber: 11111111111,
  birthYear: 2005,
});
console.log(isVerified);

// Then
verifyTC({
  name: 'Name',
  surname: 'Surname',
  tcNumber: 11111111111,
  birthYear: 2005,
}).then((isVerified) => {
  console.log(isVerified);
});