All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.prompto.value.Blob.js Maven / Gradle / Ivy

var BinaryValue = require("./BinaryValue").BinaryValue;
var BlobType = require("../type/BlobType").BlobType;

function Blob(mimeType, data) {
    BinaryValue.call(this, BlobType.instance, mimeType, data);
    return this;
}

Blob.prototype = Object.create(BinaryValue.prototype);
Blob.prototype.constructor = Blob;

exports.Blob = Blob;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy