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
109
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

to
0.7.10

4

dist/objects.d.ts

@@ -17,7 +17,7 @@ import type { UnionToTuple } from './types.js';

*/
export type Entries<T extends object> = {
export type Entries<T extends object> = ({
[K in keyof T]: [K, T[K]];
}[keyof T][];
}[keyof T] & unknown[])[];
export declare function isJSON(str: string): boolean;
export declare function resolveConstructors(object: object): string[];
export declare function map<const T extends Partial<Record<any, any>>>(items: T): Map<keyof T, T[keyof T]>;
{
"name": "utilium",
"version": "0.7.9",
"version": "0.7.10",
"description": "Typescript utilies",

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

@@ -43,3 +43,3 @@ import type { UnionToTuple } from './types.js';

*/
export type Entries<T extends object> = { [K in keyof T]: [K, T[K]] }[keyof T][];
export type Entries<T extends object> = ({ [K in keyof T]: [K, T[K]] }[keyof T] & unknown[])[];

@@ -46,0 +46,0 @@ export function isJSON(str: string) {