Skip to content

Instantly share code, notes, and snippets.

@w8r
Created December 3, 2021 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save w8r/1e735ec33ed5492b3fd37238dd53bdc0 to your computer and use it in GitHub Desktop.
Save w8r/1e735ec33ed5492b3fd37238dd53bdc0 to your computer and use it in GitHub Desktop.
Is.gd url shortening
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