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

@augment-vir/common

Package Overview
Dependencies
Maintainers
1
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@augment-vir/common - npm Package Compare versions

Comparing version 21.3.1 to 21.3.2

7

dist/cjs/augments/object/merge-deep.js

@@ -46,3 +46,8 @@ "use strict";

else {
result = individualInput;
if ((0, runtime_type_of_1.isRuntimeTypeOf)(individualInput, 'array')) {
result = [...individualInput];
}
else {
result = { ...individualInput };
}
}

@@ -49,0 +54,0 @@ }

@@ -43,3 +43,8 @@ import { isRuntimeTypeOf } from '../runtime-type-of';

else {
result = individualInput;
if (isRuntimeTypeOf(individualInput, 'array')) {
result = [...individualInput];
}
else {
result = { ...individualInput };
}
}

@@ -46,0 +51,0 @@ }

4

dist/types/augments/object/merge-deep.d.ts

@@ -7,4 +7,4 @@ import { PartialDeep } from 'type-fest';

*/
export declare function mergeDeep<T extends object>(...inputs: (T | PartialDeep<T, {
export declare function mergeDeep<const T extends object>(...inputs: (Readonly<T> | Readonly<PartialDeep<T, {
recurseIntoArrays: true;
}>)[]): T;
}>> | Readonly<Partial<T>>)[]): T;
{
"name": "@augment-vir/common",
"version": "21.3.1",
"version": "21.3.2",
"homepage": "https://github.com/electrovir/augment-vir/tree/main/packages/common",

@@ -5,0 +5,0 @@ "bugs": {

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