This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var e = (webpackChunkdiscord_app.push([ | |
[""], | |
{}, | |
(e) => { | |
m = []; | |
for (let c in e.c) m.push(e.c[c]); | |
}, | |
]), | |
m).find((m) => Object.values(m?.exports||{}).find(x=> x?.isDeveloper !== void 0)).exports | |
e.Z = {...e.Z,isDeveloper:true} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { copyFile, mkdir, readdir, readFile, rm, unlink, writeFile } = require("fs/promises"); | |
const { dirname, resolve } = require("path"); | |
async function* getFiles(dir) { | |
const dirents = await readdir(dir, { withFileTypes: true }); | |
for (const dirent of dirents) { | |
const res = resolve(dir, dirent.name); | |
if (dirent.isDirectory()) { | |
yield* getFiles(res); | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const protect = (theModule) => { | |
if (theModule.remove && theModule.set && theModule.clear && theModule.get && !theModule.sort) | |
return null; | |
if (!theModule.getToken && !theModule.getEmail && !theModule.showToken) return theModule; | |
const proxy = new Proxy(theModule, { | |
getOwnPropertyDescriptor: function (obj, prop) { | |
if (prop === "getToken" || prop === "getEmail" || prop === "showToken") return undefined; | |
return Object.getOwnPropertyDescriptor(obj, prop); | |
}, | |
get: function (obj, func) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"SFNSDisplayCondensed-Thin", | |
"Times New Roman Bold", | |
"Apple Braille Pinpoint 8 Dot", | |
"STIXSizFiveSymReg", | |
"Georgia Bold", | |
"Bradley Hand Bold", | |
"GujaratiMT", | |
"NewYorkItalic", | |
"PingFang", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require("node-fetch"); | |
async function getPlaylist(playlist) { | |
var accessToken = await fetch(`https://open.spotify.com/playlist/${playlist}`, { | |
headers: { | |
"user-agent": | |
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", | |
}, | |
}); | |
accessToken = await accessToken.text(); |