William Nemenchainitial commit
86fb32e9/11/2022, 1:13:39 AM
.ts
TypeScript
(application/typescript)
import type { AuthServiceDeps } from "./types";

export function makeCompareUserPasswordHashes(deps: AuthServiceDeps) {
  const compareUserPasswordHashes = (a: string, b: string) => {
    deps.request.id;
    return a === b;
  };

  return compareUserPasswordHashes;
}