Skip to content

Commit

Permalink
add semis
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhagen committed Jul 13, 2021
1 parent d05bf52 commit 57c79d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ component mappedSuperClass=true cacheuse="transactional" defaultSort="sortorder"
if ( isNull( data ) ) return {};

return data
.filter(function(key, value){ return !isNull( value ) })
.filter(function(key, value){ return !isNull( value ); })
.map( function(key, value) {
return deORM( value );
} );
Expand Down Expand Up @@ -888,7 +888,7 @@ component mappedSuperClass=true cacheuse="transactional" defaultSort="sortorder"
} else if ( isJSON( '[' & workData & ']' ) ) {
workData = deSerializeJSON( '[' & workData & ']' ); // for lucee
} else {
return workData.listToArray().map( function( itemID ) { return { "id" = itemID }; } )
return workData.listToArray().map( function( itemID ) { return { "id" = itemID }; } );
}
}

Expand Down

0 comments on commit 57c79d5

Please sign in to comment.