Created
February 28, 2020 19:11
-
-
Save zuzannamj/87008a77727e9451941d0123dd4cc9cb 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
| var fileEncoded = reader.result; | |
| var base64enc = fileEncoded.split(";base64,")[1]; | |
| var fullFileName = document.getElementById("file").files[0].name; | |
| var fileName = fullFileName.split(".")[0]; | |
| var assetName = fullFileName.split(".")[1]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment