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

gl-wiretap

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gl-wiretap - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

6

index.js

@@ -291,3 +291,3 @@ /**

function argumentsToString(args, options) {
const { variables } = options;
const { variables, onUnrecognizedArgumentLookup } = options;
return (Array.from(args).map((arg) => {

@@ -304,2 +304,3 @@ const variableName = getVariableName(arg);

for (const name in variables) {
if (!variables.hasOwnProperty(name)) continue;
if (variables[name] === value) {

@@ -310,2 +311,5 @@ return name;

}
if (onUnrecognizedArgumentLookup) {
return onUnrecognizedArgumentLookup(value);
}
return null;

@@ -312,0 +316,0 @@ }

2

package.json
{
"name": "gl-wiretap",
"version": "0.6.0",
"version": "0.6.1",
"description": "A gl debugger that listens and replays gl (WebGL, WebGL2, and HeadlessGL) gpu commands",

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

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