Skip to content

Commit

Permalink
Merge pull request #19 from dymonaz/patch-1
Browse files Browse the repository at this point in the history
fixed type in self.destroy method name
  • Loading branch information
koles committed Aug 1, 2012
2 parents 8ab6026 + 821ef45 commit 460eeb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ya-csv.js
Expand Up @@ -72,7 +72,7 @@ var CsvReader = csv.CsvReader = function(readStream, options) {
* @method destroy
* @return {ReadStream} the readstream instance
*/
self.destoy = function(){
self.destroy = function(){
readStream.destroy();
return self;
}
Expand Down

2 comments on commit 460eeb3

@pruthvipr
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi koles,

how can i read values row wise(2nd row 3rd row so on..) instead of column wise.

Thank you,
Pruthvi

@williamkapke
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should have included a version bump and published to NPM.

Please sign in to comment.