You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

dry-underscore

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.23.0 to 0.23.1

1

lib/common.js

@@ -155,2 +155,3 @@ "use strict";

_.undef = function(x){ return(x === undefined); };
_.defined = function(x){ return(x !== undefined); };
_.date = function(ts){

@@ -157,0 +158,0 @@ if(_.isNumber(ts)){

@@ -227,2 +227,13 @@ "use strict";

test("defined", function(){
eq(false, _.defined());
eq(false, _.defined(undefined));
eq(true, _.defined(null));
eq(true, _.defined(0));
eq(true, _.defined("abc"));
eq(true, _.defined(2));
eq(true, _.defined({}));
});
test("s", function(){

@@ -229,0 +240,0 @@ eq("", _.s());

2

npm-shrinkwrap.json
{
"name": "dry-underscore",
"version": "0.23.0",
"version": "0.23.1",
"dependencies": {

@@ -5,0 +5,0 @@ "deep-diff": {

{
"name": "dry-underscore",
"version": "0.23.0",
"version": "0.23.1",
"main": "./index/node.index.js",

@@ -5,0 +5,0 @@ "description": "The DRY Underscore Library",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc