phanpy/src/utils/isMastodonLinkMaybe.jsx

7 lines
202 B
React
Raw Normal View History

2023-04-22 19:55:47 +03:00
export default function isMastodonLinkMaybe(url) {
2023-05-05 03:54:06 +03:00
const { pathname } = new URL(url);
2023-04-25 06:16:00 +03:00
return (
2023-05-05 03:54:06 +03:00
/^\/.*\/\d+$/i.test(pathname) || /^\/notes\/[a-z0-9]+$/i.test(pathname) // Misskey, Calckey
2023-04-25 06:16:00 +03:00
);
2023-04-22 19:55:47 +03:00
}