Sha256: 88e11b35b84b6ce55d2da059c4b713dabd5340b5d13d6282caa67799f626f941
Contents?: true
Size: 1.3 KB
Versions: 5
Compression:
Stored size: 1.3 KB
Contents
/*global define*/ define(['Core/loadWithXhr'], function( loadWithXhr) { "use strict"; /** * Asynchronously loads the given URL as raw binary data. Returns a promise that will resolve to * an ArrayBuffer once loaded, or reject if the URL failed to load. The data is loaded * using XMLHttpRequest, which means that in order to make requests to another origin, * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. * * @exports loadArrayBuffer * * @param {String|Promise} url The URL of the binary data, or a promise for the URL. * @param {Object} [headers] HTTP headers to send with the requests. * * @returns {Promise} a promise that will resolve to the requested data when loaded. * * @see <a href='http://www.w3.org/TR/cors/'>Cross-Origin Resource Sharing</a> * @see <a href='http://wiki.commonjs.org/wiki/Promises/A'>CommonJS Promises/A</a> * * @example * // load a single URL asynchronously * loadArrayBuffer('some/url').then(function(arrayBuffer) { * // use the data * }, function() { * // an error occurred * }); */ var loadArrayBuffer = function(url, headers) { return loadWithXhr(url, 'arraybuffer', headers); }; return loadArrayBuffer; });
Version data entries
5 entries across 5 versions & 1 rubygems