extratorrent-api
Version:
An ExtraTorrent wrapper for NodeJS.
35 lines (30 loc) • 347 B
JavaScript
;
const s_cat = {
anime: 1,
books: 2,
games: 3,
movies: 4,
music: 5,
pictures: 6,
software: 7,
tv: 8,
other: 9,
mobile: 416,
adult: 533
};
const added = {
'1': 1,
'3': 3,
'7': 7
};
const size_types = {
b: 'b',
kb: 'kb',
mb: 'mb',
gb: 'gb'
};
module.exports = {
s_cat,
added,
size_types
};