🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@wopjs/cast

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wopjs/cast - npm Package Compare versions

Comparing version
0.1.12
to
0.1.13
+1
-1
dist/index.d.mts

@@ -130,4 +130,4 @@ /** Returns `U` if `T` is `never` or `any`, otherwise returns `T`. */

interface Coalesce {
<T>(arr: T[]): Truthy<T>[];
<T>(arr: readonly T[]): readonly Truthy<T>[];
<T>(arr: T[]): Truthy<T>[];
}

@@ -134,0 +134,0 @@ /**

@@ -130,4 +130,4 @@ /** Returns `U` if `T` is `never` or `any`, otherwise returns `T`. */

interface Coalesce {
<T>(arr: T[]): Truthy<T>[];
<T>(arr: readonly T[]): readonly Truthy<T>[];
<T>(arr: T[]): Truthy<T>[];
}

@@ -134,0 +134,0 @@ /**

{
"name": "@wopjs/cast",
"version": "0.1.12",
"version": "0.1.13",
"description": "Type-safe utilities for filtering and coercing unknown values in TypeScript.",

@@ -5,0 +5,0 @@ "repository": "wopjs/cast",

@@ -122,4 +122,4 @@ import type { Defined, Truthy } from "./is-to-as";

export interface Coalesce {
<T>(arr: T[]): Truthy<T>[];
<T>(arr: readonly T[]): readonly Truthy<T>[];
<T>(arr: T[]): Truthy<T>[];
}

@@ -126,0 +126,0 @@