New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

binaryarray

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binaryarray - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+7
-1
lib/util.js

@@ -50,4 +50,10 @@ "use strict";

// 初期化済みの配列を作成する
var createArray = exports.createArray = function(size, init_val){
return new Uint32Array(size).map(function(){ return init_val })
init_val = init_val || 0;
var w = new Uint32Array(size);
for(var i = 0; i < size; ++i){
w[i] = init_val;
}
return w;
}
+1
-1
{
"name": "binaryarray",
"version": "0.0.2",
"version": "0.0.3",
"description": "the binary array",

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