Paul Jacobson
Results
2
issues of
Paul Jacobson
https://github.com/visionmedia/ejs/issues/122 Correct https://github.com/visionmedia/ejs/pull/79 so scope works. Replaces the `(function (){})()` with `(function (){}).call(this)` Includes a test file that passes `locals` and `scope` to the compiled template. `0.8.3` fails the tests...
In [email protected] ``` test='this test in base' console.log(ejs.render('')) console.log(ejs.render('',{scope:{test:'in scope'}})) ``` produces ``` this test in base in scope ``` in [email protected], both lines produce `this test in base` This...