purs-pkg-deps
Version:
Query package dependencies in PureScript package-sets
22 lines (17 loc) • 457 B
JavaScript
;
exports.typeImpl = function (blob) { return blob.type; };
exports.blobImpl = function (args) {
return function (mediaType) {
return new Blob(args, {type: mediaType});
};
};
exports.size = function (blob) { return blob.size; };
exports.slice = function (contentType) {
return function (start) {
return function (end) {
return function (blob) {
return blob.slice(start, end, contentType);
};
};
};
};