4 export const VIAF_BASE_URL = "http://viaf.org/viaf/"; |
4 export const VIAF_BASE_URL = "http://viaf.org/viaf/"; |
5 export const BNF_BASE_URL = "http://data.bnf.fr/"; |
5 export const BNF_BASE_URL = "http://data.bnf.fr/"; |
6 export const BNF_ARK_BASE_URL = "http://ark.bnf.fr/"; |
6 export const BNF_ARK_BASE_URL = "http://ark.bnf.fr/"; |
7 export const BNF_ARK_BASE_ID = "ark:/12148/"; |
7 export const BNF_ARK_BASE_ID = "ark:/12148/"; |
8 export const DEFAULT_STORE_EXP = 3600000; |
8 export const DEFAULT_STORE_EXP = 3600000; |
|
9 export const NOID_CHARS = [ |
|
10 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', |
|
11 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', |
|
12 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'z' |
|
13 ]; |
|
14 export const NOID_CHARS_POS = { |
|
15 '0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, |
|
16 'b': 10, 'c': 11, 'd': 12, 'f': 13, 'g': 14, 'h': 15, 'j': 16, 'k': 17, 'm': 18, 'n': 19, |
|
17 'p': 20, 'q': 21, 'r': 22, 's': 23, 't': 24, 'v': 25, 'w': 26, 'x': 27, 'z': 28 |
|
18 }; |