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) {
52
52
53
53
// Filter out non-empty strings
54
54
return _ . filter ( arrayRepresentation , function ( value ) {
55
- return value ;
56
- } ) ;
55
+ return value ;
56
+ } ) ;
57
57
} ;
58
58
59
59
/**
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
14
14
*/
15
15
var generateHeading = function ( data ) {
16
16
return new Promise ( function ( resolve , reject ) {
17
- if ( options . KEYS ) { resolve ( options . KEYS ) ; }
17
+ if ( options . KEYS ) { return resolve ( options . KEYS ) ; }
18
18
19
19
var keys = _ . map ( _ . keys ( data ) , function ( key , indx ) { // for each key
20
20
if ( _ . isObject ( data [ key ] ) ) {
You can’t perform that action at this time.
0 commit comments