cic-staff-client/src/app/_helpers/http-getter.ts

18 lines
456 B
TypeScript
Raw Normal View History

function HttpGetter(): void {}
2021-05-10 18:15:25 +02:00
HttpGetter.prototype.get = (filename) =>
new Promise((resolve, reject) => {
const xhr: XMLHttpRequest = new XMLHttpRequest();
xhr.addEventListener('load', (e) => {
if (xhr.status === 200) {
resolve(xhr.responseText);
return;
}
reject('failed with status ' + xhr.status + ': ' + xhr.statusText);
});
xhr.open('GET', filename);
xhr.send();
});
2021-05-10 18:15:25 +02:00
export { HttpGetter };