mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 17:21:58 +03:00
6 lines
202 B
JavaScript
6 lines
202 B
JavaScript
export default function isMastodonLinkMaybe(url) {
|
|
const { pathname } = new URL(url);
|
|
return (
|
|
/^\/.*\/\d+$/i.test(pathname) || /^\/notes\/[a-z0-9]+$/i.test(pathname) // Misskey, Calckey
|
|
);
|
|
}
|