New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typed-array-ops

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typed-array-ops - npm Package Compare versions

Comparing version

to
0.1.10

2

package.json
{
"name": "typed-array-ops",
"version": "0.1.9",
"version": "0.1.10",
"description": "Element wise operator functions for ndarray data.",

@@ -5,0 +5,0 @@ "main": "typed-array-ops.js",

@@ -56,4 +56,7 @@ /*jslint white: true, vars: true, plusplus: true, nomen: true, unparam: true, evil: true, regexp: true */

ops[opname] = twofourthr(ops[opname + "3"]);
ops[opname].baked = function (ops) {
return function(a, b, c) { return twofourthr(ops.baked(a, b, c)); }
ops[opname].baked = function (op) {
return function(a, b, c) {
if ( c === undefined ) { return twofourthr(op.baked(a, b, c));
} else { return op.baked(a, b, c); }
}
}(ops[opname + "3"]);

@@ -60,0 +63,0 @@