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 ImageFormat = locreq(
"lib/subject/subject-types/image-format/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:28 (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
702412
Default Alt Text
image-formats.js (503 B)

Event Timeline