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

utilium

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utilium - npm Package Compare versions

Comparing version 0.1.9 to 0.1.10

7

dist/objects.js

@@ -18,3 +18,8 @@ export function filterObject(object, predicate) {

for (const key of keys) {
to[key] = from[key] ?? defaults[key] ?? to[key];
try {
to[key] = from[key] ?? defaults[key] ?? to[key];
}
catch (e) {
// Do nothing
}
}

@@ -21,0 +26,0 @@ }

2

package.json
{
"name": "utilium",
"version": "0.1.9",
"version": "0.1.10",
"description": "Typescript utilies",

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

@@ -27,3 +27,7 @@ import type * as FS from 'fs';

for (const key of keys) {
to[key] = from[key] ?? defaults[key] ?? to[key];
try {
to[key] = from[key] ?? defaults[key] ?? to[key];
} catch (e) {
// Do nothing
}
}

@@ -30,0 +34,0 @@ }

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