Comparing version 1.0.8 to 1.0.9
@@ -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 @@ } |
{ | ||
"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 @@ |
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
20946
317
232