Comparing version 0.1.5 to 0.1.6
@@ -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" | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
49915
341