mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
fc5b4dd934
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
20 lines
331 B
JavaScript
20 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');
|
|
}
|
|
};
|