Implemented URL query parsing for initial token /opa/?token=abcde
[src/app-framework-demo.git] / afb-client / bower_components / jszip / documentation / api_jszip / support.md
1 ---
2 title: "JSZip.support"
3 layout: default
4 section: api
5 ---
6
7 If the browser supports them, JSZip can take advantage of some "new" features :
8 ArrayBuffer, Blob, Uint8Array. To know if JSZip can use them, you can check the
9 JSZip.support object. It contains the following boolean properties :
10
11 * `arraybuffer` : true if JSZip can read and generate ArrayBuffer, false otherwise.
12 * `uint8array` : true if JSZip can read and generate Uint8Array, false otherwise.
13 * `blob` : true if JSZip can generate Blob, false otherwise.
14 * `nodebuffer` : true if JSZip can read and generate nodejs Buffer, false otherwise.
15
16