Created
January 8, 2023 19:15
-
-
Save codergautam/3dda16d789c83b7d9f4f7418ff67215e to your computer and use it in GitHub Desktop.
One-line Fetch API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetcher = (...args) => fetch(...args).then((res) => res.json()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment