mirror of
https://github.com/wahyd4/docsify.git
synced 2026-08-21 19:26:10 +10:00
11 lines
203 B
JavaScript
11 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)
|
|
}
|
|
}
|