10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
export default function (url, options = {}) {
|
|
const xhr = new XMLHttpRequest()
|
|
|
|
xhr.open(options.method || 'get', url)
|
|
xhr.send()
|
|
|
|
return {
|
|
then: cb => xhr.addEventListener('load', cb)
|
|
}
|
|
}
|