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
#disable git proxy using goagent | |
git config --global http.proxy "" | |
git config --global https.proxy "" | |
git config --global http.sslCAinfo "" | |
git config --global http.sslVerify true | |
#enable git proxy and enable SSL certificate using goagent | |
git config --global http.proxy 127.0.0.1:8087 | |
git config --global https.proxy 127.0.0.1:8087 | |
git config --global http.sslVerify true |
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
function HTMLLexicalParser(){ | |
function emitToken(token){ | |
console.log(token); | |
} | |
function error(){ | |
console.log("error"); | |
} |