import type { AuthServiceDeps } from "./types"; export function makeCompareUserPasswordHashes(_: AuthServiceDeps) { const compareUserPasswordHashes = (a: string, b: string) => { return a === b; }; return compareUserPasswordHashes; }
GitFOSS • v0.2.0 (#421408f) • MIT License