0.0.1 • Published 12 years ago

incremental-eval v0.0.1

Weekly downloads
1
License
BSD
Repository
-
Last release
12 years ago

incremental-eval

npm.io

Given a string of javascript code, returns the result of running the code line-by-line.

example

var incr = require('incremental-eval');

incr('a = 2'); // [2]
incr('a = 2\n a * 2'); // [2, 4]

// supports modifying the scope with with
incr('a', { a: 2 }); // [2]

incrementalEval()

Takes a piece of Javascript code, as a string, and returns an array of results per-line. If a line does not return results, it is in the array as null.

The second argument can be an object that is supplied to with, so that you can change the scope of the eval

license

BSD