k / gitfoss

Files

Forked Fromethicdevs / gitfoss
Fork0
William Nemenchainitial commit
86fb32e9/11/2022, 1:13:39 AM
~app/services/auth/makeIsExistingUsername.ts
.ts
TypeScript
(application/typescript)
import { AuthServiceDeps } from "./types";

export function makeIsExistingUsername(_: AuthServiceDeps) {
  const isExistingUsername = (username: string) => {
    return username === "username";
  };

  return isExistingUsername;
}