UNPKG

ghost

Version:

The professional publishing platform

10 lines (8 loc) 297 B
const isLocalContentImage = function (url, siteUrl = '') { const normalizedSiteUrl = siteUrl.replace(/\/$/, ''); const imagePath = url.replace(normalizedSiteUrl, ''); return /^(\/.*|__GHOST_URL__)\/?content\/images\//.test(imagePath); }; module.exports = { isLocalContentImage };