https://angular.io/api/common/http/HttpInterceptor
https://angular.io/guide/http#intercepting-requests-and-responses
| export class ContractTypesService extends BaseService { | |
| contractTypesGet$Json$ResponseOLD(params?: { | |
| }): Observable<StrictHttpResponse<{ [key: string]: string }>> { | |
| const rb = new RequestBuilder(this.rootUrl, ContractTypesService.ContractTypesGetPath, 'get'); | |
| if (params) { | |
| } |
| a = new Date(); | |
| b = new Date(); | |
| console.log(a == b); //false | |
| console.log(a < b); //false | |
| console.log(a <= b); //true | |
| o = {}; | |
| k = {a: 1, b: 2}; |
| # IMPORTANT! Works with Docker 17.05+ | |
| FROM kkarczmarczyk/node-yarn AS buildContainer | |
| # Create a directory where our app will be placed | |
| RUN mkdir -p /tmp/src/app | |
| # Change directory so that our commands run inside this new directory | |
| WORKDIR /tmp/src/app |