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

ogl

Package Overview
Dependencies
Maintainers
1
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ogl - npm Package Compare versions

Comparing version 0.0.111 to 0.0.112

2

package.json
{
"name": "ogl",
"version": "0.0.111",
"version": "0.0.112",
"description": "WebGL Library",

@@ -5,0 +5,0 @@ "exports": "./src/index.mjs",

@@ -79,4 +79,18 @@ import * as Mat4Func from './functions/Mat4Func.js';

add(ma, mb) {
if (mb) Mat4Func.add(this, ma, mb);
else Mat4Func.add(this, this, ma);
return this;
}
sub(ma, mb) {
if (mb) Mat4Func.subtract(this, ma, mb);
else Mat4Func.subtract(this, this, ma);
return this;
}
multiply(ma, mb) {
if (mb) {
if (!ma.length) {
Mat4Func.multiplyScalar(this, this, ma);
} else if (mb) {
Mat4Func.multiply(this, ma, mb);

@@ -83,0 +97,0 @@ } else {

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