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

m8

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

m8 - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

13

m8.js

@@ -269,7 +269,10 @@ !function(root) {

value : function(o, k) {
if (isNaN(k) && !!~k.indexOf(".")) {
var v;
k = k.split(".");
while (v = k.shift()) if ((o = Type.value(o, v)) === U) return o;
return o;
if (isNaN(k)) {
if (got(o, k)) return o[k];
if (!!~k.indexOf(".")) {
var v;
k = k.split(".");
while (v = k.shift()) if ((o = Type.value(o, v)) === U) return o;
return o;
}
}

@@ -276,0 +279,0 @@ return empty(o) ? U : !empty(o[k]) ? o[k] : typeof o.get == "function" ? o.get(k) : typeof o.getAttribute == "function" ? o.getAttribute(k) : U;

@@ -20,3 +20,3 @@ {

},
"version" : "0.1.1"
"version" : "0.1.2"
}
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