Ghost/core/frontend/meta/modified-date.js
Hannah Wolfe af4bfb8862
Changed meta filenames to correct casing
- purely for cleanliness!
- we use kebabcase by default
- tests should be kebab-case-file_spec.js (one day we want this to be .test.js)
2021-07-01 12:30:25 +01:00

19 lines
445 B
JavaScript

const getContextObject = require('./context-object.js');
function getModifiedDate(data) {
let context = data.context ? data.context : null;
let modDate;
const contextObject = getContextObject(data, context);
if (contextObject) {
modDate = contextObject.updated_at || null;
if (modDate) {
return new Date(modDate).toISOString();
}
}
return null;
}
module.exports = getModifiedDate;