diff --git a/packages/object-util/src/ObjectUtil.ts b/packages/object-util/src/ObjectUtil.ts index 40942e1..36c25d5 100644 --- a/packages/object-util/src/ObjectUtil.ts +++ b/packages/object-util/src/ObjectUtil.ts @@ -3,7 +3,7 @@ * * (Same as Array.map) * @param obj the object to remap - * @param fn the fn to run + * @param fn the function to run for each key: value pairs */ export function objectMap(obj: Record, fn: (value: T, key: string) => J): Array { const list: Array = []