swc/bundler/tests/.cache/deno/6ec7162085a2e78d83fd084ee73c11b6c185ac8b.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

63 lines
1.2 KiB
TypeScript

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isIMEI.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
let imeiRegexWithoutHypens = /^[0-9]{15}$/;
/**
* @ignore
*/
let imeiRegexWithHypens = /^\d{2}-\d{6}-\d{6}-\d{1}$/;
type IMEIOptions = {
allowHyphens?: boolean;
};
export const isIMEI = (str: string, options?: IMEIOptions) => {
assertString(str);
options = options || {};
// default regex for checking imei is the one without hyphens
let imeiRegex = imeiRegexWithoutHypens;
if (options.allowHyphens) {
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;
};