mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs #9178 - i am not super happy about `const imageLib = require('../lib/image')` - i don't really like the name `imageLib` - but i had no better idea 😃 - if we use the same name in the whole project, it's very easy to rename the folder or the variable
19 lines
331 B
JavaScript
19 lines
331 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get blogIcon() {
|
|
return require('./blog-icon');
|
|
},
|
|
|
|
get imageSize() {
|
|
return require('./image-size');
|
|
},
|
|
|
|
get gravatar() {
|
|
return require('./gravatar');
|
|
},
|
|
|
|
get imageSizeCache() {
|
|
return require('./cached-image-size-from-url');
|
|
}
|
|
};
|