Skip to content

Instantly share code, notes, and snippets.

@PCreations
Created July 17, 2024 08:22
Show Gist options
  • Save PCreations/e1c944f7750aa9cdc3a1e503484364f4 to your computer and use it in GitHub Desktop.
Save PCreations/e1c944f7750aa9cdc3a1e503484364f4 to your computer and use it in GitHub Desktop.
7617b3482e57.diff
-9,4 +9,8 @@ export class InMemoryBookRepository implements BookRepository {
this.lastSavedBook = book;
this.booksByTitle.set(book.title, book);
}
+
+ async doesBookExist(title: string): Promise<boolean> {
+ return this.booksByTitle.has(title);
+ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment