Project: Codever
Enclose the response in setTimeout
router.get('/', async (request, response) => {
const {page, limit} = PaginationQueryParamsHelper.getPageAndLimit(request);
const bookmarks = await PublicBookmarksService.getLatestPublicBookmarks(page, limit);
setTimeout((() => {
return response.send(bookmarks);
}), 2000)
});
Shared with ❤️ from Codever. Use 👉 copy to mine functionality to add it to your personal snippets collection.
Top comments (1)
await new Promise(resolve => setTimeout(resolve, 2000));