Skip to content

Commit

Permalink
Remove null check left over from debugging.
Browse files Browse the repository at this point in the history
See #456.
  • Loading branch information
flatheadmill committed Feb 6, 2015
1 parent 92c7607 commit 8af1fe7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions strata.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ var __slice = [].slice
console.log(require('util').inspect(args, false, null))
}*/

function compare (a, b) {
ok(a != null && b != null, 'null key')
return a < b ? -1 : a > b ? 1 : 0
}
function compare (a, b) { return a < b ? -1 : a > b ? 1 : 0 }

function extract (a) { return a }

Expand Down

0 comments on commit 8af1fe7

Please sign in to comment.