Manual dependencies update (#4298)

* Manual dependencies update

* Manual dependencies update - e2es fix

---------

Co-authored-by: datguychen <adam.swiderski@hyland.com>
This commit is contained in:
MichalKinas
2024-12-11 09:50:39 +01:00
committed by GitHub
parent 079f362c5d
commit 7fcc0af5bd
12 changed files with 87 additions and 141 deletions

View File

@@ -169,4 +169,14 @@ export class Utils {
return Object.keys(entries).some((entry) => entry.includes(name));
});
}
/**
* Method used trim all elements of an array from all spaces characters
*
* @param arr array needed to be trimmed
*
*/
static trimArrayElements(arr: string[]): string[] {
return arr.map((element) => element.trim());
}
}