-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathisIMEI.js
47 lines (38 loc) · 969 Bytes
/
isIMEI.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import assertString from './util/assertString';
let imeiRegexWithoutHypens = /^[0-9]{15}$/;
let imeiRegexWithHypens = /^\d{2}-\d{6}-\d{6}-\d{1}$/;
export default function isIMEI(str, options) {
assertString(str);
options = options || {};
// default regex for checking imei is the one without hyphens
let imeiRegex = imeiRegexWithoutHypens;
if (options.allow_hyphens) {
imeiRegex = imeiRegexWithHypens;
}
if (!imeiRegex.test(str)) {
return false;
}
str = str.replace(/-/g, '');
let sum = 0,
mul = 2,
l = 14;
for (let i = 0; i < l; i++) {
const digit = str.substring(l - i - 1, l - i);
const tp = parseInt(digit, 10) * mul;
if (tp >= 10) {
sum += (tp % 10) + 1;
} else {
sum += tp;
}
if (mul === 1) {
mul += 1;
} else {
mul -= 1;
}
}
const chk = ((10 - (sum % 10)) % 10);
if (chk !== parseInt(str.substring(14, 15), 10)) {
return false;
}
return true;
}