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

ndarray

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndarray - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

6

ndarray.js

@@ -291,2 +291,6 @@ "use strict"

return "int8"
} else if(data instanceof Uint8ClampedArray) {
return "uint8_clamped"
} else if((typeof Buffer !== "undefined") && (data instanceof Buffer)) {
return "buffer"
} else if(data instanceof Array) {

@@ -308,2 +312,4 @@ return "array"

"array":[],
"uint8_clamped":[],
"buffer":[],
"generic":[]

@@ -310,0 +316,0 @@ }

2

package.json
{
"name": "ndarray",
"version": "1.0.8",
"version": "1.0.9",
"description": "Multidimensional Arrays",

@@ -5,0 +5,0 @@ "main": "ndarray.js",

@@ -162,2 +162,4 @@ ndarray

`Array` | "array"
`Uint8ArrayClamped` | "uint8_clamped"
`Buffer` | "buffer"
Other | "generic"

@@ -164,0 +166,0 @@

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