Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aakilfernandes committed Jan 3, 2017
1 parent 7dd851c commit c81da6e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion baseTrie.js
Expand Up @@ -276,7 +276,7 @@ Trie.prototype._batchNodes = function (opStack, cb) {

Trie.prototype._findPath = function (targetKey, root, cb) {
var self = this
var root = root || self.root
root = root || self.root
var stack = []
targetKey = TrieNode.stringToNibbles(targetKey)

Expand Down
1 change: 0 additions & 1 deletion test/index.js
Expand Up @@ -86,7 +86,6 @@ tape('simple save and retrive', function (tester) {
})
})


it('should delete from a branch', function (t) {
trie.del('doge', function (err1, stack) {
trie.get('doge', function (err2, value) {
Expand Down

0 comments on commit c81da6e

Please sign in to comment.