Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Jan 16, 2015
1 parent 9da4168 commit 277fd6c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions js/dist/compare.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@
/* js/src/decreasing.js */


var decreasing = function ( a, b ) {
var decreasing = function ( a , b ) {

return ( a > b ) ? -1 : ( ( a === b ) ? 0 : 1 );
return ( a > b ) ? -1 : ( a === b ) ? 0 : 1 ;

};
} ;

exports.decreasing = decreasing;
exports.decreasing = decreasing ;

/* js/src/increasing.js */


var increasing = function ( a, b ) {
var increasing = function ( a , b ) {

return ( a < b ) ? -1 : ( ( a === b ) ? 0 : 1 );
return ( a < b ) ? -1 : ( a === b ) ? 0 : 1 ;

};
} ;

exports.increasing = increasing;
exports.increasing = increasing ;

/* js/src/lexicographical */
/* js/src/lexicographical/colexicographical.js */
Expand Down
2 changes: 1 addition & 1 deletion js/dist/compare.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions js/src/decreasing.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


var decreasing = function ( a, b ) {
var decreasing = function ( a , b ) {

return ( a > b ) ? -1 : ( ( a === b ) ? 0 : 1 );
return ( a > b ) ? -1 : ( a === b ) ? 0 : 1 ;

};
} ;

exports.decreasing = decreasing;
exports.decreasing = decreasing ;
8 changes: 4 additions & 4 deletions js/src/increasing.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


var increasing = function ( a, b ) {
var increasing = function ( a , b ) {

return ( a < b ) ? -1 : ( ( a === b ) ? 0 : 1 );
return ( a < b ) ? -1 : ( a === b ) ? 0 : 1 ;

};
} ;

exports.increasing = increasing;
exports.increasing = increasing ;

0 comments on commit 277fd6c

Please sign in to comment.