mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-08 02:27:19 +03:00
9 lines
340 B
JavaScript
9 lines
340 B
JavaScript
export default function isMastodonLinkMaybe(url) {
|
|
const { pathname } = new URL(url);
|
|
return (
|
|
/^\/.*\/\d+$/i.test(pathname) ||
|
|
/^\/@[^/]+\/statuses\/\w+$/i.test(pathname) || // GoToSocial
|
|
/^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Calckey
|
|
/^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) // Pleroma
|
|
);
|
|
}
|