0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/lib/mobiledoc/converters/index.js
kirrg001 5f5f0021db 🔥 Drop Node v4 Support
no issue

- support ends today
- see https://github.com/nodejs/Release
- removed `use strict`
2018-05-01 14:06:18 +02:00

9 lines
194 B
JavaScript

module.exports = {
get mobiledocConverter() {
return require('./mobiledoc-converter');
},
get markdownConverter() {
return require('./markdown-converter');
}
};