Container req state up & properties removed
[arvados-workbench2.git] / src / common / formatters.ts
index c03bf04b71b2e237143a5b29ed66875978538b28..b4b9bc41381085bb1691a1a4908c14c58ec471b8 100644 (file)
@@ -129,12 +129,3 @@ export const formatContainerCost = (cost: number): string => {
     return `$${rounded}`;
   }
 };
-
-export const formatObjectProperties = (untypedObj: Object) => {
-  type kVPair = [string, string];
-  let formattedObject: Array<kVPair> = [];
-  for (const key in untypedObj) {
-    formattedObject.push([key, untypedObj[key]]);
-  }
-  return formattedObject;
-};