Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
51 lines
1.0 KiB
1 year ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.unique = unique;
|
||
|
exports.objectSortedEntries = objectSortedEntries;
|
||
|
exports.objectSortedEntriesDeep = objectSortedEntriesDeep;
|
||
|
exports.setDifference = setDifference;
|
||
|
|
||
|
function unique(array) {
|
||
|
return [...new Set(array)];
|
||
|
}
|
||
|
|
||
|
function objectSortedEntries(obj) {
|
||
|
return Object.entries(obj).sort(([keyA], [keyB]) => keyA.localeCompare(keyB));
|
||
|
}
|
||
|
|
||
|
function objectSortedEntriesDeep(object) {
|
||
|
let sortedEntries = objectSortedEntries(object);
|
||
|
|
||
|
for (let i = 0; i < sortedEntries.length; i++) {
|
||
|
sortedEntries[i][1] = sortEntry(sortedEntries[i][1]);
|
||
|
}
|
||
|
|
||
|
return sortedEntries;
|
||
|
}
|
||
|
|
||
|
function sortEntry(entry) {
|
||
|
if (Array.isArray(entry)) {
|
||
|
return entry.map(sortEntry);
|
||
|
}
|
||
|
|
||
|
if (typeof entry === 'object' && entry != null) {
|
||
|
return objectSortedEntriesDeep(entry);
|
||
|
}
|
||
|
|
||
|
return entry;
|
||
|
}
|
||
|
|
||
|
function setDifference(a, b) {
|
||
|
let difference = new Set();
|
||
|
|
||
|
for (let e of a) {
|
||
|
if (!b.has(e)) {
|
||
|
difference.add(e);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return difference;
|
||
|
}
|