Merge branch 'master' into search-features

Conflicts:
	package.json
	src/app/shared/shared.module.ts
	yarn.lock
This commit is contained in:
lotte
2018-08-02 14:21:28 +02:00
158 changed files with 13203 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'dsConsole'
})
export class ConsolePipe implements PipeTransform {
transform(value: any): string {
console.log(value);
return '';
}
}