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);