heapwolf / lev

The complete REPL & CLI for managing LevelDB instances.
MIT License
296 stars 36 forks source link

Should use indexOf for existence check #34

Closed jacobbubu closed 10 years ago

jacobbubu commented 10 years ago

Line 94 in lev.js

if (filter[arg]) { argv.createReadStream = true } should be

if (filter.indexOf(arg) > -1) { argv.createReadStream = true }

heapwolf commented 10 years ago

the master branch is dead use tui.