UNPKG

romtool

Version:

Collection of tools for managing your PSX rom collection

15 lines (12 loc) 275 B
const xray = require("x-ray")(); function scrape(url, fields) { return new Promise((resolve, reject) => { xray(url, fields)((err, result) => { if (err) { return reject(err); } return resolve(result); }); }); } module.exports = scrape;