closure-fetch
v0.4.2
Published
A Closure Compiler compatible fetch implementation (does not support the full fetch API)
Downloads
63
Readme
Closure Fetch
A minimal fetch implementation that supports sending ArrayBuffer and plain strings. Retrieval only supports array buffers as response.
fetch('/myfile.zip').then(function (response) {
response.arrayBuffer().then(function (buffer) {
});
});