Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nik-parser

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nik-parser

Parse & Validasi Nomor Induk Kependudukan (NIK) KTP Menggunakan TypeScript.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
decreased by-18.76%
Maintainers
1
Weekly downloads
 
Created
Source

NIK Parser in TypeScript

Parse & Validasi Nomor Induk Kependudukan (NIK) KTP Menggunakan TypeScript.

Kode ini merupakan modifikasi dari https://github.com/bachors/nik_parse.js.

Perbedaan antara nik-parser dan nik_parse.js adalah:

nik-parsernik_parse.js
BahasaTypeScriptJavaScript
Didesain sebagaiLibraryJSON response
FokusEsensial data[1]Lain-lain
[1] Esensial data yang dimaksud tidak memasukkan informasi seperti zodiak, usia hingga ke tingkatan hari, dan berapa lama lagi akan berulang tahun.

Instalasi

npm i nik-parser

Penggunaan

// const { nikParser } = require('nik-parser')

import { nikParser } from 'nik-parser'

const ktp = '3204110609970001'

const nik = nikParser(ktp)

nik.isValid()         // true
nik.provinceId()      // 32
nik.province()        // JAWA BARAT
nik.kabupatenKotaId() // 3204
nik.kabupatenKota()   // KAB. BANDUNG
nik.kecamatanId()     // 320411
nik.kecamatan()       // KATAPANG
nik.kodepos()         // 40921
nik.kelamin()         // pria
nik.lahir()           // 1997-09-05T17:00:00.000Z (Date object)
nik.uniqcode()        // 0001

Catatan

Data yang dihasilkan hanya hasil menterjemahkan tiap digit NIK sehingga data yang dihasilkan adalah tempat kali pertama NIK dibuat/tempat lahir (bukan tempat domisili pemilik NIK secara uptodate).

Keywords

FAQs

Package last updated on 04 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc