Skip to content

Instantly share code, notes, and snippets.

View 2M4U's full-sized avatar
🏠
Working from home playin' with my girls pussy.

2M4U

🏠
Working from home playin' with my girls pussy.
View GitHub Profile
@2M4U
2M4U / cosmetics.js
Created August 2, 2022 14:07
Simple way to get the cosmetic data you need.
const axios = require("axios");
let endpoint = "https://fortnite-api.com/v2/cosmetics/br";
const search = (searchStr) => (item) => item.name === searchStr;
class Cosmetics {
async findCosmetic(input) {
let results = await axios.get(endpoint);
let find = search(input);
@MixV2
MixV2 / auth.js
Created March 24, 2020 21:52
Authenticating with Epic Games
// by joe/mix
const request = require("request-promise");
module.exports = {
/**
* Login to an account.
* @param {string} email
* @param {string} password
*/
async authenticate(email, password) {