Page MenuHomeSealhub

image-formats.js
No OneTemporary

image-formats.js

"use strict";
const locreq = require("locreq")(__dirname);
const Subject = locreq("lib/subject/subject.js");
const Errors = locreq("lib/response/error.js");
const ImageFormat = locreq("lib/subject/subject-types/image-format.js");
const ImageFormats = function(app, file_id) {
this.name = "ImageFormats";
this.file_id = file_id;
this.get_child_subject = function(format_name) {
return new ImageFormat(app, file_id, format_name);
};
};
ImageFormats.prototype = Object.create(Subject.prototype);
module.exports = ImageFormats;

File Metadata

Mime Type
text/plain
Expires
Tue, Jun 17, 03:29 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
673682
Default Alt Text
image-formats.js (535 B)

Event Timeline