newrelicbuster
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "newrelicbuster", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "A monkey patch to enable New Relic to run on Kraken applications.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -408,6 +408,6 @@ 'use strict' | ||
var i = app.stack.length -1; | ||
for (;i>0;i--){ | ||
if(app.stack[i]===interceptor) { | ||
app.stack.splice(i,1); | ||
var i = app.stack.length - 1; | ||
for (; i >= 0; i--) { | ||
if (app.stack[i] === interceptor) { | ||
app.stack.splice(i, 1); | ||
} | ||
@@ -414,0 +414,0 @@ } |
@@ -37,3 +37,3 @@ #NewRelic Buster | ||
var i = app.stack.length -1; | ||
for (;i>0;i--){ | ||
for (; i>=0; i--){ | ||
if(app.stack[i]===interceptor) { | ||
@@ -40,0 +40,0 @@ app.stack.splice(i,1); |
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
28378