@tamagui/proxy-worm
Advanced tools
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
1739
20
1