Comparing version 0.5.17 to 0.5.18
@@ -187,3 +187,3 @@ var util = require('util'), | ||
process.nextTick(function () { | ||
setImmediate(function () { | ||
try { | ||
@@ -190,0 +190,0 @@ renderer.render(tokens, view, partials, stream, function () { |
@@ -29,3 +29,3 @@ var BUFFER_LENGTH = 1024 * 8; | ||
stream.once('resumed', function () { | ||
process.nextTick(next); | ||
setImmediate(next); | ||
}); | ||
@@ -36,3 +36,3 @@ return; | ||
if (++stackSize % MAX_STACK_SIZE == 0) { | ||
process.nextTick(next); | ||
setImmediate(next); | ||
return; | ||
@@ -186,3 +186,3 @@ } | ||
if (i % MAX_STACK_SIZE == 0) { | ||
return process.nextTick(next); | ||
return setImmediate(next); | ||
} else { | ||
@@ -189,0 +189,0 @@ next(); |
{ "name": "mu2" | ||
, "description": "A Mustache template engine for Node.js" | ||
, "keywords": ["template", "mustache"] | ||
, "version" : "0.5.17" | ||
, "version" : "0.5.18" | ||
, "homepage": "http://github.com/raycmorgan/mu" | ||
@@ -6,0 +6,0 @@ , "author" : "RayMorgan <ray@rumgr.com>" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77402