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.5 to 0.1.6

8

m8.js

@@ -127,6 +127,2 @@

function empty( item ) { return !exists( item ) || ( !len( item ) && iter( item ) ) || false; }
function error( e ) {
}
function exists( item ) { return !( item === null || item === UNDEF || ( typeof item == 'number' && isNaN( item ) ) ); }

@@ -156,4 +152,4 @@

function got( obj, key ) { return arguments > 2 ? hasSome( got, obj, Array.coerce( arguments, 1 ) ) : key in Object( obj ); }
function has( obj, key ) { return arguments > 2 ? hasSome( has, obj, Array.coerce( arguments, 1 ) ) : OP.hasOwnProperty.call( obj, key ); }
function got( obj, key ) { return arguments.length > 2 ? hasSome( got, obj, Array.coerce( arguments, 1 ) ) : key in Object( obj ); }
function has( obj, key ) { return arguments.length > 2 ? hasSome( has, obj, Array.coerce( arguments, 1 ) ) : OP.hasOwnProperty.call( obj, key ); }
function hasSome( test, obj, keys ) { return keys.some( function( key ) { return test( obj, key ); } ); }

@@ -160,0 +156,0 @@

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

},
"version" : "0.1.5"
"version" : "0.1.6"
}
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