You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

lore-engine

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.5 to 1.0.6

2

package.json
{
"name": "lore-engine",
"version": "1.0.5",
"version": "1.0.6",
"description": "A WebGL based 3D data visualization engine.",

@@ -5,0 +5,0 @@ "main": "./dist/lore.js",

@@ -6,3 +6,3 @@ /**

let Lore = {
Version: '1.0.5'
Version: '1.0.6'
};

@@ -9,0 +9,0 @@

@@ -119,9 +119,9 @@ /** A helper class containing statistics methods. */

for (let i = 0; i < newArr.length; i++) {
if (newArr[i] < lower) {
for (let i = 0; i < arr.length; i++) {
if (arr[i] < lower) {
newArr[i] = 0.0;
} else if (newArr[i] > upper) {
} else if (arr[i] > upper) {
newArr[i] = 1.0;
} else {
newArr[i] = (newArr[i] - lower) / diff;
newArr[i] = (arr[i] - lower) / diff;
}

@@ -128,0 +128,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc