Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
[fix] remove references to write-stream
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrugzz authored and ralphtheninja committed Mar 10, 2015
1 parent 36658a2 commit a712e62
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 185 deletions.
7 changes: 0 additions & 7 deletions lib/levelup.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ var EventEmitter = require('events').EventEmitter
, InitializationError = require('./errors').InitializationError

, ReadStream = require('./read-stream')
, WriteStream = require('./write-stream')
, util = require('./util')
, Batch = require('./batch')
, codec = require('./codec')
Expand Down Expand Up @@ -439,12 +438,6 @@ LevelUP.prototype.createValueStream = function (options) {
return this.createReadStream(extend(options, { keys: false, values: true }))
}

LevelUP.prototype.writeStream =
LevelUP.prototype.createWriteStream = function (options) {
//XXX is extend needed here?
return new WriteStream(extend(options), this)
}

LevelUP.prototype.toString = function () {
return 'LevelUP'
}
Expand Down
178 changes: 0 additions & 178 deletions lib/write-stream.js

This file was deleted.

0 comments on commit a712e62

Please sign in to comment.