Skip to content

Instantly share code, notes, and snippets.

@reqshark
Created March 5, 2014 03:30
Show Gist options
  • Save reqshark/9360636 to your computer and use it in GitHub Desktop.
Save reqshark/9360636 to your computer and use it in GitHub Desktop.
manifest for leveldb
{ methods:
{ createReadStream: { type: 'readable' },
readStream: { type: 'readable' },
createValueStream: { type: 'readable' },
valueStream: { type: 'readable' },
createKeyStream: { type: 'readable' },
keyStream: { type: 'readable' },
createWriteStream: { type: 'writable' },
writeStream: { type: 'writable' },
isOpen: { type: 'sync' },
isClosed: { type: 'sync' },
put: { type: 'async' },
get: { type: 'async' },
del: { type: 'async' },
batch: { type: 'async' },
approximateSize: { type: 'async' } } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment