mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
Merge branch 'master' into search-features
Conflicts: package.json src/app/shared/shared.module.ts yarn.lock
This commit is contained in:
11
src/app/shared/utils/console.pipe.ts
Normal file
11
src/app/shared/utils/console.pipe.ts
Normal 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 '';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user