mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
5f5f0021db
no issue - support ends today - see https://github.com/nodejs/Release - removed `use strict`
18 lines
316 B
JavaScript
18 lines
316 B
JavaScript
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');
|
|
}
|
|
};
|