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

mitsuketa

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mitsuketa - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

5

index.js

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

if(keyCount === 0) return undefined;
var newIdentity;
switch(identityType){
case 'object' : var newIdentity = {}; keyList.forEach(key => { newIdentity[key] = identity[key]; }); return newIdentity; break;
case 'array' : const newIdentity = keyList.map(key => { return identity[key]; }); return newIdentity; break;
case 'object' : newIdentity = {}; keyList.forEach(key => { newIdentity[key] = identity[key]; }); return newIdentity; break;
case 'array' : newIdentity = keyList.map(key => { return identity[key]; }); return newIdentity; break;
}

@@ -59,0 +60,0 @@ }

2

package.json
{
"name": "mitsuketa",
"version": "1.0.8",
"version": "1.0.9",
"description": "A Javascript library that enables you to handle deeply nested objects easily.",

@@ -5,0 +5,0 @@ "main": "index.js",

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