datadog-tracer
Advanced tools
Comparing version 0.3.1 to 0.3.2
{ | ||
"name": "datadog-tracer", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "OpenTracing Tracer implementation for Datadog in JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -63,3 +63,3 @@ 'use strict' | ||
for (let i = 0; i < 4; i++) { | ||
number += Math.floor(Math.random() * 255) << (i * 8) | ||
number += Math.floor(Math.random() * 256) << (i * 8) | ||
} | ||
@@ -66,0 +66,0 @@ |
@@ -30,3 +30,3 @@ 'use strict' | ||
Math.random.onCall(0).returns(0) | ||
Math.random.onCall(1).returns(1) | ||
Math.random.onCall(1).returns(0.999) | ||
Math.random.onCall(2).returns(0) | ||
@@ -33,0 +33,0 @@ Math.random.onCall(3).returns(0) |
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
36050