purrbot-api
Version:
The official API wrapper for the Purrbot.site API 100% API Coverage 100% Type-Script coverage
29 lines • 1.19 kB
JavaScript
import { get, list } from './util.js';
export default {
list: (imgType, category) => list(imgType, true, category),
get: (imgType, category) => get(imgType, true, category),
gif: {
list: (category) => list('gif', true, category),
get: (category) => get('gif', true, category),
},
img: {
list: (category) => list('img', true, category),
get: (category) => get('img', true, category),
},
categories: {
neko: (imgType) => get(imgType, true, 'neko'),
anal: () => get('gif', true, 'anal'),
blowjob: () => get('gif', true, 'blowjob'),
cum: () => get('gif', true, 'cum'),
fuck: () => get('gif', true, 'fuck'),
pussylick: () => get('gif', true, 'pussylick'),
solo: () => get('gif', true, 'solo'),
threesome_fff: () => get('gif', true, 'threesome_fff'),
threesome_ffm: () => get('gif', true, 'threesome_ffm'),
threesome_mmf: () => get('gif', true, 'threesome_mmf'),
yaoi: () => get('gif', true, 'yaoi'),
yuri: () => get('gif', true, 'yuri'),
solo_male: () => get('gif', true, 'solo_male'),
},
};
//# sourceMappingURL=nsfw.js.map