mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
Fixed issue #1 and some other fixes
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
import { PipeTransform, Pipe } from '@angular/core';
|
||||
|
||||
@Pipe({name: 'dsObjectKeys'})
|
||||
/**
|
||||
* Pipe for parsing all keys of an object to an array of key-value pairs
|
||||
*/
|
||||
export class ObjectKeysPipe implements PipeTransform {
|
||||
|
||||
/**
|
||||
* @param value An object
|
||||
* @returns {any} Array with all keys the input object
|
||||
*/
|
||||
transform(value, args:string[]): any {
|
||||
const keys = [];
|
||||
Object.keys(value).forEach((k) => keys.push(k));
|
||||
|
Reference in New Issue
Block a user