UNPKG
romtool
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.4
1.0.3
1.0.0
Collection of tools for managing your PSX rom collection
github.com/jordond/romtool
jordond/romtool
romtool
/
src
/
utils
/
fetch.js
11 lines
(8 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
fetch =
require
(
"node-fetch"
);
async
function
urlExists
(
url
) {
const
result =
await
fetch
(url);
return
result.
status
!==
404
; }
module
.
exports
= { urlExists };