Skip to content

Commit

Permalink
Build for 0.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Nov 11, 2014
1 parent 9685488 commit dd68b26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build/levelgraph.js
Expand Up @@ -925,7 +925,7 @@ function genKeyWithEnding(key, triple) {
}

if (i < 3) {
result += '::\xff';
result += '::\uffff';
}

return result;
Expand Down Expand Up @@ -1217,8 +1217,8 @@ function createQuery(pattern, options) {
, key = genKey(index, pattern, '')
, limit = pattern.limit
, reverse = pattern.reverse || false
, start = reverse ? key + '\xff' : key
, end = reverse ? key : key + '\xff'
, start = reverse ? key + '\uffff' : key
, end = reverse ? key : key + '\uffff'
, query = {
start: start
, end: end
Expand Down

0 comments on commit dd68b26

Please sign in to comment.