Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cleaver

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleaver - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

12

lib/clone.js

@@ -5,12 +5,14 @@ /**

function clone(obj) {
var key, clone = {};
if (!obj) return;
var key, copy = {};
if (!obj) {
return;
}
for (key in obj) {
clone[key] = obj[key];
copy[key] = obj[key];
}
return clone;
};
return copy;
}
module.exports = clone;

@@ -6,3 +6,5 @@ /**

var plucked = {};
if (!obj) return;
if (!obj) {
return;
}

@@ -14,4 +16,4 @@ fields.forEach(function (field) {

return plucked;
};
}
module.exports = pluck;
{
"name": "cleaver",
"preferGlobal": true,
"version": "0.7.0",
"version": "0.7.1",
"author": "Jordan Scales <scalesjordan@gmail.com>",

@@ -6,0 +6,0 @@ "description": "30-second slideshows for hackers",

Sorry, the diff of this file is not supported yet

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