UNPKG
fodselsnummer
Version:
latest (0.0.1)
0.0.1
National identification number of Norway.
github.com/andersos/fodselsnummer
andersos/fodselsnummer
fodselsnummer
/
index.js
14 lines
(11 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module
.exports =
function
(input)
{
if
(typeof
input
===
'number'
) {
input
=
input
.toString(); }
if
(typeof
input
===
'string'
) {
if
(
input
.length ===
11
&& !isNaN(
input
)){
return
true
; } }
return
false
; };