-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.ts
55 lines (55 loc) · 1.83 KB
/
mod.ts
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
48
49
50
51
52
53
54
55
export { appInfo } from "./version.ts";
export {
ARXIVPattern,
newARXIVPattern,
normalizeArXivID,
oldARXIVPattern,
reARXIV,
reNewARXIV,
reOldARXIV,
validateArXivID,
} from "./arxiv.ts";
export { verifyArXivID } from "./arxiv_record.ts";
export { DOIPattern, normalizeDOI, reDOI, validateDOI } from "./doi.ts";
export { verifyDOI } from "./doi_record.ts";
export {
ISBN10Pattern,
ISBN13Pattern,
ISBNPattern,
normalizeISBN,
reISBN,
reISBN10,
reISBN13,
validateISBN,
} from "./isbn.ts";
export { verifyISBN } from "./isbn_record.ts";
export { ISNIPattern, normalizeISNI, reISNI, validateISNI } from "./isni.ts";
export { verifyISNI } from "./isni_record.ts";
export { ISSNPattern, reISSN, normalizeISSN, validateISSN } from "./issn.ts";
export { verifyISSN } from "./issn_record.ts";
export {
LCNAFPattern,
normalizeLCNAF,
reLCNAF,
validateLCNAF,
} from "./lcnaf.ts";
export { verifyLCNAF } from "./lcnaf_record.ts";
export {
normalizeORCID,
ORCIDPattern,
reORCID,
validateORCID,
} from "./orcid.ts";
export { verifyORCID } from "./orcid_record.ts";
export { PMCIDPattern, rePMCID, normalizePMCID, validatePMCID } from "./pmcid.ts";
export { verifyPMCID } from "./pmcid_record.ts";
export { PMIDPattern, rePMID, normalizePMID, validatePMID } from "./pmid.ts";
export { verifyPMID } from "./pmid_record.ts";
export { reROR, RORPattern, normalizeROR, validateROR } from "./ror.ts";
export { verifyROR } from "./ror_record.ts";
export { SNACPattern, reSNAC, normalizeSNAC, validateSNAC } from "./snac.ts";
export { verifySNAC } from "./snac_record.ts";
export { VIAFPattern, reVIAF, normalizeVIAF, validateVIAF } from "./viaf.ts";
export { verifyVIAF } from "./viaf_record.ts";
export { TELPattern, reTEL, normalizeTEL, validateTEL } from './tel.ts';
export { EMAILPattern, reEMAIL, normalizeEMAIL, validateEMAIL } from './email.ts';