Skip to content

Commit 98ba610

Browse files
committed
Remove comment
1 parent 932b32d commit 98ba610

File tree

1 file changed

+0
-6
lines changed
  • packages/database/src/core/util

1 file changed

+0
-6
lines changed

packages/database/src/core/util/util.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -395,12 +395,6 @@ export const splitStringBySize = function(
395395
* @param fn The function to apply
396396
*/
397397
export function each(obj: object, fn: (k: string, v: any) => void) {
398-
/**
399-
* in the conversion of code we removed the goog.object.forEach
400-
* function which did a value,key callback. We standardized on
401-
* a single impl that does a key, value callback. So we invert
402-
* to not have to touch the `each` code points
403-
*/
404398
for (const key in obj) {
405399
if (obj.hasOwnProperty(key)) {
406400
fn(key, obj[key]);

0 commit comments

Comments
 (0)