UNPKG

detect-external-link

Version:

Node.js plugin that analyzes the given link and determines if the URL is internal or external.

6 lines (4 loc) 153 B
export default function detectExternalLink (linkToCheck: string, options: configOptions): boolean; export type configOptions = { hosts?: string[]; };