Files
NetMesh/domain/sshAgentSettings.ts

5 lines
210 B
TypeScript
Raw Permalink Normal View History

export const isSshAgentNoneValue = (value: string | undefined): boolean => {
if (typeof value !== "string") return false;
return value.trim().replace(/^["']|["']$/g, "").trim().toLowerCase() === "none";
};