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