npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

verifiera

v1.3.0

Published

A JavaScript library to perform common operations on Personal Identification Numbers (Social Security Numbers), like: Validation, censoring the individual digits, calculating age and detecting gender.

Downloads

3,159

Readme

verifiera.js

Verifiera: A JavaScript library to perform common operations on Personal Identification Numbers (Social Security Numbers), like: Validation, censoring the individual digits, calculating age and detecting gender.

npm

Key Information

license version pipeline status coverage report minified minzipped

verifiera.js:

  • Available for browsers, Node.js and as ES6 module.
  • Shakable-tree.
  • Respects semver.
  • Well tested.
  • Zero dependency.
  • Written in TypeScript.
  • Types are included.

Supported Countries Demo

  • :cz: Czech Republic and :sk: Slovakia (Rodné Číslo)
  • :dk: Denmark (CPR-Nummer)
  • :fi: Finland (Henkilötunnus / Personbeteckning)
  • :nl: Netherlands (Burgerservicenummer) Validation only
  • :no: Norway (Fødselsnummer and D-nummer)
  • :pl: Poland (PESEL)
  • :se: Sweden (Personnummer and Samordningsnummer)
Upcoming Features
  • Swedish organization no.
  • Suggest a country or a feature!

Installation

npm i verifiera

Usage

You can use ES6 import style:

import {
  czechSlovakia,
  denmark,
  finland,
  netherlands,
  norway,
  poland,
  sweden
} from 'verifiera'

or CommonJS require style:

const {
  czechSlovakia,
  denmark,
  finland,
  netherlands,
  norway,
  poland,
  sweden
} = require('verifiera')

Or even fetch to the browser as a script

<script src="https://unpkg.com/verifiera@latest/dist/verifiera.js"></script>
<script>
const sweden = window.verifiera.sweden;
</script>

Then you can use the desired country tools by passing the personal number to it:

const ssn = sweden('571124-1322')

ssn.validate() // true
ssn.getAge() // 62
ssn.getBirthday() // 1957-11-24
ssn.getCensored() // 571124-****
ssn.getGender() // f
ssn.getYear() // 1957

Functions (Country Tools)

Country functions can be called as the following, where ssn is the personal number:

| Country | Arguments | | ----------- | -------------------- | | denmark | (ssn, strict = false) | | finland | (ssn) | | netherlands | (ssn) | | norway | (ssn) | | poland | (ssn) | | sweden | (ssn, strict = true) |

A country function returns an object of the following country tools:

| Functions | Returns | Returns | Valid Example | If Invalid | Notes | | ------------------ | -------------------- | ------- | ----------------- | ---------- | ----------- | | validate() | if the ssn valid | bool | true | false | | | getAge() | Person's age | int | 62 | 0 | | | getBirthday() | Person's birthday | str | '1957-11-24' | '' | | | getCensored() | Replaces identifiers | str | '571124-****' | '' | | | getGender() | Person's gender | str | 'f' or 'm' | '' | | | getYear() | Year of birth | int | 1975 | 0 | | | isDNumber() | Is it a D-number? | bool | true | false | Norway only | | isCoordinationNo() | Is co-ordination no? | bool | true | false | Sweden only |

Additional Tools

isDNumber

  • Detects whether a Norwegian personal number is a D-number.
  • Returns false if the personal number looks like a D-number but isn't a valid one.
import { norway } from 'verifiera'

norway('41018036736').isDNumber() // true

Auto-Detection of the Country

  • If you have a valid personal number and you want to detect to which country it belongs, you can use the detectCountry() function.
  • It only detects supported countries. :)
import { detectCountry } from 'verifiera'

detectCountry('571124-1322') // sweden

Possible values are:

  • czech_slovakia
  • denmark
  • finland
  • netherlands
  • norway
  • poland
  • sweden

Auto-Initiation of Country Tools

  • This function will iterate over the list of all countries and return the correct one.
  • Use when you don't know which country you are dealing with, but you only care about the operations. Ex: verify (or calculate ages for) a list of personal numbers that come from different countries.
import { getCountryTools } from 'verifiera'

const ssn = getCountryTools('571124-1322')

ssn.validate() // true
ssn.getAge() // 62
ssn.getBirthday() // 1957-11-24
ssn.getCensored() // 571124-****
ssn.getGender() // f
ssn.getYear() // 1957

Country Notes

  • Denmark:
    • However, in 2007 the available sequence numbers under this system for males born on 1 January 1965 ran out, and since October 2007 personal identification numbers do not always validate using the check digit. This had been predicted and announced several years in advance. Thus, most IT systems are presumed updated to accept numbers that fail the check-digit validation. — Wikipedia

    • Therefore, I see no use for performing a checksum on Danish personal numbers, because we will get false negatives. However, if you want to use the checksum, you can pass a true boolean after the personal number in denmark('260783-1234', true), but this will consider some of real-world numbers invalud.
  • Netherlands:
    • Dutch personal numbers don't hold any personal information like birthday or gender.
    • The only working function in the Dutch country tools is validate().
    • getCensored() returns ********* for valid numbers.
  • Norway:
    • validate() returns true for both valid normal personal numbers and valid D-numbers. If it's important to differentiate between them, please use isDNumber()
  • Sweden:
    • In Sweden, some companies add the century digits as a part of the personal number, or remove the -/+ signs between the date of birth and the four individual digits. These variations are not part of the official standard as specified by Skatteverket. So I included a switch for strict mode:
      • strict = true Supports the official standard format only (default).
      • strict = false Supports the popular non-standard format.
    • validate() returns true for both valid normal personal numbers and valid coordination numbers. If it's important to differentiate between them, please use isCoordinationNo()

Issues and Bugs

Please submit your requests or report issues and bugs here.

Contribution

Feel free to discuss any addition or improvement before you submit a merge request. Please don't commit anything in the dist folder. This folder gets updated just before a release.

PHP Sister

This library was introduced originally in PHP as Bekräfta

License

MIT