UNPKG

romtool

Version:

Collection of tools for managing your PSX rom collection

11 lines (8 loc) 174 B
const fetch = require("node-fetch"); async function urlExists(url) { const result = await fetch(url); return result.status !== 404; } module.exports = { urlExists };