6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
![]() |
import { WebhookFragment } from "./types/WebhookFragment";
|
||
|
|
||
|
export function isUnnamed(webhook: WebhookFragment): boolean {
|
||
|
return ["", null].includes(webhook?.name);
|
||
|
}
|