aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/fileExists.js
blob: 6d32a1ea68bdc46a218ec6d37c36d052cd83a185 (plain)
1
2
3
4
5
6
7
8
const fileExists = async (url) => {
  const xhr = new XMLHttpRequest();
  xhr.open('HEAD', url, false);
  xhr.send();

  return xhr.status === 200;
};
export default fileExists;