The BlobBuilder interface provides an easy way to construct web.files.Blob
Just create a BlobBuilder and append chunks of data to it by
the append() method. When you're done building your blob, call
to retrieve a web.files.Blob
containing the data you sent into
blob builder.
The BlobBuilder interface provides an easy way to construct `web.files.Blob` Just create a BlobBuilder and append chunks of data to it by the append() method. When you're done building your blob, call to retrieve a `web.files.Blob` containing the data you sent into blob builder.
(content-type this & args)
Method.
The MIME type of the data to be returned in the Blob. This will the value of the Blob object's type property.
Method. The MIME type of the data to be returned in the Blob. This will the value of the Blob object's type property.
(data this & args)
Method.
The data to append to the Blob being constructed.
Method. The data to append to the Blob being constructed.
(endings this & args)
Method.
Specifies how strings containing \n are to be written out. This be "transparent" (endings unchanged) or "native" (endings changed match host OS filesystem convention). The default value is "transparent".
Method. Specifies how strings containing \n are to be written out. This be "transparent" (endings unchanged) or "native" (endings changed match host OS filesystem convention). The default value is "transparent".
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close