Conversation
Notices
-
ninguno (nobody@gnusocial.net)'s status on Saturday, 18-Feb-2017 12:14:42 UTC ninguno
function fetch(url, cb) {
var xhr = new XMLHttpRequest;
xhr.open('get', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
cb(xhr.response);
};
xhr.send();
}; // precioso #callback