nlptoolkit-util
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -21,3 +21,3 @@ (function (factory) { | ||
Random.prototype.nextRandom = function () { | ||
this.seed = (1664525 * this.seed + 1013904223) % Number.MAX_SAFE_INTEGER; | ||
this.seed = (1664525 * this.seed + 1013904223) % 2147483647; | ||
}; | ||
@@ -24,0 +24,0 @@ Random.prototype.nextDouble = function (min, max) { |
{ | ||
"name": "nlptoolkit-util", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Simple Utils Library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -12,3 +12,3 @@ export class Random { | ||
private nextRandom(){ | ||
this.seed = (1664525 * this.seed + 1013904223) % Number.MAX_SAFE_INTEGER; | ||
this.seed = (1664525 * this.seed + 1013904223) % 2147483647 | ||
} | ||
@@ -15,0 +15,0 @@ |
Sorry, the diff of this file is not supported yet
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
89261
40
1027