File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ var convertArrayRepresentation = function (arrayRepresentation) {
5252
5353 // Filter out non-empty strings
5454 return _ . filter ( arrayRepresentation , function ( value ) {
55- return value ;
56- } ) ;
55+ return value ;
56+ } ) ;
5757} ;
5858
5959/**
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ var options = {}; // Initialize the options - this will be populated when the js
1414 */
1515var generateHeading = function ( data ) {
1616 return new Promise ( function ( resolve , reject ) {
17- if ( options . KEYS ) { resolve ( options . KEYS ) ; }
17+ if ( options . KEYS ) { return resolve ( options . KEYS ) ; }
1818
1919 var keys = _ . map ( _ . keys ( data ) , function ( key , indx ) { // for each key
2020 if ( _ . isObject ( data [ key ] ) ) {
You can’t perform that action at this time.
0 commit comments