Created
June 11, 2020 02:40
-
-
Save djD-REK/b47f54acb032119cfeb43dc0c3489c87 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
| fetch("script.js") | |
| .then((response) => response.text()) | |
| .then((text) => eval(text)) | |
| .then(() => { | |
| /* Now you can use the script */ | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!