mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 22:16:43 -06:00
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
export function isLink(el: HTMLElement) {
|
||
|
if (el.tagName === 'A') return true;
|
||
|
if (el.parentElement) {
|
||
|
return isLink(el.parentElement);
|
||
|
}
|
||
|
return false;
|
||
|
}
|