UNPKG

torrent-search-api

Version:

Yet another node torrent scraper based on x-ray. (Support iptorrents, torrentleech, torrent9, Yyggtorrent, ThePiratebay, torrentz2, 1337x, KickassTorrent, Rarbg, TorrentProject, Yts, Limetorrents, Eztv)

12 lines (10 loc) 223 B
const makeDriver = requestFn => ({ url }, callback) => { requestFn(url) .then(response => { callback(null, response); }) .catch(error => { callback(error); }); }; module.exports = makeDriver;