UNPKG

torrent-search-api

Version:

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

8 lines 416 B
exports.uniqueName = name => name.toLowerCase(); exports.isString = value => typeof value === 'string'; exports.isObject = value => typeof value === 'object'; exports.isArray = value => value instanceof Array; exports.oneArgument = args => args.length === 1; exports.twoArguments = args => args.length === 2; exports.silentRejection = fn => fn.catch(() => null); exports.isClass = fn => /^class/.test(fn.toString());