Created
February 17, 2019 05:12
-
-
Save dance2die/bfbb7085d70fa3b6212a72c0ca8a11e1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 code = `(function getUrls(){ | |
| const forkUrl = document.querySelector('meta[name="octolytics-dimension-repository_parent_nwo"]') | |
| ? document.querySelector('meta[name="octolytics-dimension-repository_parent_nwo"]').content | |
| : undefined; | |
| const url = document.querySelector('meta[name="go-import"]') | |
| ? document.querySelector('meta[name="go-import"]').content.split(' ')[0] | |
| : undefined; | |
| return { forkUrl, url }; | |
| })()`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment