-
Notifications
You must be signed in to change notification settings - Fork 6
/
sf15to18.js
30 lines (24 loc) · 857 Bytes
/
sf15to18.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
'use strict';
module.exports = (id) => {
if (!id) throw new TypeError('No id given.');
if (typeof id !== 'string') throw new TypeError('The given id isn\'t a string');
if (id.length === 18) return id;
if (id.length !== 15) throw new RangeError('The given id isn\'t 15 characters long.');
// Generate three last digits of the id
for (let i = 0; i < 3; i++) {
let f = 0;
// For every 5-digit block of the given id
for (let j = 0; j < 5; j++) {
// Assign the j-th chracter of the i-th 5-digit block to c
let c = id.charAt(i * 5 + j);
// Check if c is an uppercase letter
if (c >= 'A' && c <= 'Z') {
// Set a 1 at the character's position in the reversed segment
f += 1 << j;
}
}
// Add the calculated character for the current block to the id
id += 'ABCDEFGHIJKLMNOPQRSTUVWXYZ012345'.charAt(f);
}
return id;
};