Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@luma.gl/webgpu

Package Overview
Dependencies
Maintainers
7
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@luma.gl/webgpu - npm Package Compare versions

Comparing version 9.0.0-beta.8 to 9.0.0-beta.9

dist.min.js

11

dist/dist.dev.js

@@ -1185,6 +1185,8 @@ (function webpackUniversalModuleDefinition(root, factory) {

function isElectron(mockUserAgent) {
if (typeof window !== "undefined" && typeof window.process === "object" && window.process.type === "renderer") {
if (typeof window !== "undefined" && typeof window.process === "object" && // @ts-expect-error
window.process.type === "renderer") {
return true;
}
if (typeof process !== "undefined" && typeof process.versions === "object" && Boolean(process.versions["electron"])) {
if (typeof process !== "undefined" && typeof process.versions === "object" && // eslint-disable-next-line
Boolean(process.versions["electron"])) {
return true;

@@ -1202,3 +1204,6 @@ }

function isBrowser() {
const isNode = typeof process === "object" && String(process) === "[object process]" && !process.browser;
const isNode = (
// @ts-expect-error
typeof process === "object" && String(process) === "[object process]" && !process.browser
);
return !isNode || isElectron();

@@ -1205,0 +1210,0 @@ }

{
"name": "@luma.gl/webgpu",
"version": "9.0.0-beta.8",
"version": "9.0.0-beta.9",
"description": "WebGPU adapter for the luma.gl core API",

@@ -46,3 +46,3 @@ "type": "module",

},
"gitHead": "b4ba7f35a5d0b5a09625c955d952cbbab9c1ad28"
"gitHead": "6a91ba24a0f78ef190c51e52c31271ea1a5a7a1f"
}
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