UNPKG

social-link-parser

Version:

Extract usernames, IDs, and metadata from social media URLs across 100+ platforms

11 lines 310 B
import { registry } from '../platforms/index.js'; export function detectPlatform(url) { const lower = url.toLowerCase(); for (const module of registry.values()) { if (module.detect(lower)) { return module; } } return undefined; } //# sourceMappingURL=detector.js.map