Code Monkey home page Code Monkey logo

swedish-ssn's Introduction

Swedish Personal Number or Swedish Social Security Number Validation and Generation

  • A micro Javascript library for validating and generating Swedish Personal Number.
  • Lightweight
  • No dependencies

Installation

NPM

npm install swedish-ssn-tool

Bower

bower install swedish-ssn-tool

Usage

ES6

import SwedishSSN from "../swedish-ssn"
const isValid = SwedishSSN.validate('870430-2713');
console.log(isValid);
//  result true

Using global namespace.

<script src="https://unpkg.com/swedish-ssn-tool/swedish-ssn.min.js"></script>
<script>
  // This is valid SSN
  var isValid = SwedishSSN.validate('20870430-2713');
  console.log(isValid);
  //  result true
</script>

Examples

Validate SSN

//  This is valid Swedish SSN
console.log('valid ssn returns ' + SwedishSSN.validate('870430-2713'));
//  'valid ssn returns true'

//  This is invalid Swedish SSN
console.log('invalid ssn returns ' + SwedishSSN.validate('870430-2714'));
//  'invalid ssn returns false'

Generate SSN

//  generate a random SSN
var fakeSSN =  SwedishSSN.generateRandomSSN();
//  now validate it
console.log('Is ssn valid: ' + SwedishSSN.validate(fakeSSN));

Generate SSN With Parameters

//  generate a random SSN for female
var fakeSSN =  SwedishSSN.generateSSNWithParameters(new Date(1970-11-10), 'female');
//  generate a random SSN for male
var fakeSSN =  SwedishSSN.generateSSNWithParameters(new Date(1970-11-10), 'male');
//  generate a random SSN for random gender
var fakeSSN =  SwedishSSN.generateSSNWithParameters(new Date(1970-11-10));
//  now validate it
console.log('Is ssn valid: ' + SwedishSSN.validate(fakeSSN));

Functions

#validate(ssn)

  • Validates parameter given SSN. Returns true if SSN is valid, otherwise false

#generateRandomSSN()

  • Generates a random SSN. Returns formatted: '870430-2713'

#generateSSNWithParameters(birthdate, gender)

  • Generates a random SSN with given parameter.
  • Birthdate could be new Date() , it will format it in the script
  • Gender could be male and female, default is random gender
  • Returns formatted: '870430-2713'

Building

# Build a distributable, minified UMD library compatible with browsers and Node
npm run dist

# Run tests
npm run test

Test Online

check from my website

Changelog

1.0.0

  • Initial release

License

GPL License

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.