Skip to content

Commit

Permalink
Fix eval module
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Dec 5, 2011
1 parent 33ec33c commit 0084cbd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion HISTORY.md
@@ -1,6 +1,7 @@
### v0.4.3
### v0.4.4
* Bug fix for nested getHtml
* Bug fix for write permissions
* Bug fix for the eval builtin

### v0.4.1
* node v0.6 support
Expand Down
2 changes: 1 addition & 1 deletion builtin/eval.coffee
Expand Up @@ -20,7 +20,7 @@ class EvalExp extends nodeio.JobClass

run: (input) ->
result = eval @options.args[0]
if result? then @emit result else @skip
if result? then @emit result else @skip()

@class = EvalExp
@job = new EvalExp()
2 changes: 1 addition & 1 deletion builtin/eval.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ "name" : "node.io",
"description" : "A distributed data scraping and processing framework",
"version" : "0.4.3",
"version" : "0.4.4",
"homepage" : "http://github.com/chriso/node.io",
"keywords" : ["data","mapreduce","map","reduce","scraping","html","parsing","parse","scrape","process","processing","data"],
"author" : "Chris O'Hara <cohara87@gmail.com>",
Expand Down

0 comments on commit 0084cbd

Please sign in to comment.