1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/** Return a JSON representation of a file @param {File} file @return {Object} */ function encodeFileToJson(file) { return { path: file.getPath(), mtime: file.getMTime(), type: file.getType() }; } module.exports = encodeFileToJson;