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

@tamagui/proxy-worm

Package Overview
Dependencies
Maintainers
1
Versions
1196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tamagui/proxy-worm - npm Package Compare versions

Comparing version 1.0.0-alpha.64 to 1.0.0-beta.172

32

index.js

@@ -1,15 +0,21 @@

module.exports = empty()
module.exports = worm(true)
function empty() {
return new Proxy(
{},
{
get() {
return empty()
},
apply() {
return empty()
},
}
)
function worm(root = false) {
const obj = root
? {
get default() {
return worm()
},
}
: function () {
return worm()
}
return new Proxy(obj, {
get() {
return worm()
},
apply() {
return worm()
},
})
}
{
"name": "@tamagui/proxy-worm",
"version": "1.0.0-alpha.64",
"version": "1.0.0-beta.172+0f3fd8dc",
"main": "index.js",

@@ -12,3 +12,3 @@ "publishConfig": {

},
"gitHead": "9363f43117f9504de9bd4949ca210cd1ebbf753b"
"gitHead": "0f3fd8dc83eede20419fb180704eb9ad1d63e814"
}

Sorry, the diff of this file is not supported yet

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