aboutsummaryrefslogtreecommitdiff
path: root/build/cleaners/socialmedia.js
blob: fb0bcfd9d53921a87f04a2bc7ca0a4d9ebcf874e (plain)
1
2
3
4
5
6
7
8
9
10
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseSocialMedia = void 0;
function parseSocialMedia(socialMedia) {
    return {
        discord: socialMedia?.links?.DISCORD || null,
        forums: socialMedia?.links?.HYPIXEL || null
    };
}
exports.parseSocialMedia = parseSocialMedia;