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

tslang

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tslang - npm Package Compare versions

Comparing version 0.1.24 to 0.1.25

8

library/mutation.d.ts
import {IsEqual} from './comparison';
import {Primitive} from './types';
import {PlainObject, Primitive} from './types';

@@ -268,5 +268,3 @@ // Extract keys

export type OptionalizeUndefinedDeep<T> = T extends Primitive
? T
: T extends object
export type OptionalizeUndefinedDeep<T> = T extends PlainObject
? {

@@ -286,3 +284,3 @@ [K in KeyOfValueContainingType<T, undefined>]?: OptionalizeUndefinedDeep<

type ReplaceString<
export type ReplaceString<
T extends string,

@@ -289,0 +287,0 @@ TSearch extends string,

@@ -15,1 +15,11 @@ export type Primitive =

export type Constructor<T extends object = object> = new (...args: any[]) => T;
export interface PlainObject {
[key: string]: unknown;
}
export type JSONValue = Primitive | JSONObject | JSONValue[];
export interface JSONObject {
[key: string]: JSONValue;
}
{
"name": "tslang",
"version": "0.1.24",
"version": "0.1.25",
"description": "TypeScript Language Type Utilities.",

@@ -5,0 +5,0 @@ "license": "MIT",

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