Skip to content

Instantly share code, notes, and snippets.

@w8r
Created December 3, 2021 10:11
Show Gist options
  • Save w8r/1e735ec33ed5492b3fd37238dd53bdc0 to your computer and use it in GitHub Desktop.
Save w8r/1e735ec33ed5492b3fd37238dd53bdc0 to your computer and use it in GitHub Desktop.

Revisions

  1. w8r created this gist Dec 3, 2021.
    4 changes: 4 additions & 0 deletions index.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    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));