Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nlptoolkit-util

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nlptoolkit-util - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

tests/RandomTest.ts

2

dist/Random.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc