.ts
TypeScript
(application/typescript)
import type { AuthServiceDeps } from "./types";

export function makeCompareUserPasswordHashes(_: AuthServiceDeps) {
  const compareUserPasswordHashes = (a: string, b: string) => {
    return a === b;
  };

  return compareUserPasswordHashes;
}