UNPKG

metalsmith-broken-link-checker

Version:
15 lines (14 loc) 280 B
module.exports = (options) => { return (link) => { switch (link.type) { case "link": return !!options.checkLinks case "anchor": return !options.allowAnchors case "image": return !!options.checkImages default: return false } } }