Files
spoon/apps/next/src/lib/avatar.ts
T
Gabriel Brown 2dfa97ee4f
Build and Push Next App / quality (push) Failing after 48s
Build and Push Next App / build-next (push) Has been skipped
Add agent workflows & stuff
2026-06-21 21:15:15 -05:00

5 lines
173 B
TypeScript

export const isRemoteImageUrl = (value: string | null | undefined) => {
if (!value) return false;
return value.startsWith('http://') || value.startsWith('https://');
};