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
    
  
  
    
  | /* Express Route Adapter */ | |
| const resolver = (handlerFn) => { | |
| return (req, res, next) => { | |
| return Promise.resolve(handlerFn(req, res, next)) | |
| .catch(e => next(e)); | |
| } | |
| } | |
| /* Errors */ | |
| class InternalServerError extends Error { | 
  
    
      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
    
  
  
    
  | #!/usr/bin/bash | |
| echo "🐺 Digite o nome do perfil do vscode: " | |
| read profileName | |
| profile="" | |
| if [ $profileName != "" ]; then | |
| profile="--profile $profileName" | |
| fi | |
| code --install-extension Angular.ng-template $profile && | 
OlderNewer