Class Blob

Blob represents immutable binary data container. For browsers providing support for Blob, Kaazing JavaScript client library uses browser's underlying Blob implementation. For older browsers where Blob is not supported, Kaazing JavaScript client library provides custom implementation as an Array-backed MemoryBlob.


Field Summary
Number size
          (Read only) Size (in bytes) of the Blob.
String type
          (Read only) MIME type of the Blob if it is known.
 
Constructor Summary
Blob(parts, properties)
            Creates a new Blob instance.
 
Method Summary
 Blob slice(start, end, contentType)
           Slice the Blob and return a new Blob.
 
Field Detail

size

Number size

type

String type

Constructor Detail

Blob

Blob(parts, properties)

Method Detail

slice

Blob slice(start, end, contentType)