File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ class FlattenedJSON {
9191 const entry = item [ i ]
9292 const thisKeyNameWithPrevious = `${ keyNameWithPrevious } [${ i } ]`
9393 if ( FlattenedJSON . isObject ( entry ) ) {
94- return ( ) => this . _trampolineIteration ( this . _iterateOverObject , entry , thisKeyNameWithPrevious )
94+ this . _trampolineIteration ( this . _iterateOverObject , entry , thisKeyNameWithPrevious )
9595 } else {
9696 this . results [ thisKeyNameWithPrevious ] = entry
9797 }
9898 }
9999 } else if ( FlattenedJSON . isObject ( item ) ) {
100- return ( ) => this . _trampolineIteration ( this . _iterateOverObject , item , keyNameWithPrevious )
100+ this . _trampolineIteration ( this . _iterateOverObject , item , keyNameWithPrevious )
101101 } else {
102102 this . results [ keyNameWithPrevious ] = cleanup ( this . feed , item )
103103 }
You can’t perform that action at this time.
0 commit comments