Created
December 3, 2021 10:11
-
-
Save w8r/1e735ec33ed5492b3fd37238dd53bdc0 to your computer and use it in GitHub Desktop.
Is.gd url shortening
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 url = `https://maps.google.com`; | |
fetch(`https://is.gd/create.php?format=simple&url=${url}`) | |
.then(r => r.text()) | |
.then(r => console.log(r)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment