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

hkt-toolbelt

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hkt-toolbelt - npm Package Compare versions

Comparing version

to
0.23.1

tsconfig.spec.tsbuildinfo

2

package.json
{
"name": "hkt-toolbelt",
"version": "0.23.0",
"version": "0.23.1",
"description": "Functional and composable type utilities",

@@ -5,0 +5,0 @@ "types": "./dist/index.d.ts",

import { Kind } from '..';
/**
* `_$cast` is a type-level function that casts a type `T` to a type `U`.
* `_$cast` is a generic type that coercively downcasts a type `T` to a type `U`.
* Returns the narrower out of the two types. If the two types are unrelated, returns `U`.
*

@@ -12,4 +13,5 @@ * @template T - The type to cast.

* type T2 = _$cast<true, boolean> // true
* type T3 = _$cast<boolean, 0> // 0
*/
export type _$cast<T, U> = T extends U ? T : U;
export type _$cast<T, U> = [T] extends [U] ? T : U;
interface Cast_T<T> extends Kind.Kind {

@@ -19,3 +21,4 @@ f(x: this[Kind._]): _$cast<typeof x, T>;

/**
* `Cast` is a type-level function that casts a type `T` to a type `U`.
* `Cast` is a type-level function that coercively downcasts a type `T` to a type `U`.
* Returns the narrower out of the two types. If the two types are unrelated, returns `U`.
*

@@ -29,2 +32,3 @@ * @template T - The type to cast.

* type T2 = $<$<Cast, true>, boolean> // true
* type T3 = $<$<Cast, boolean>, 0> // 0
*/

@@ -31,0 +35,0 @@ export interface Cast extends Kind.Kind {

@@ -0,1 +1,2 @@

export * from './assert';
export * from './cast';

@@ -2,0 +3,0 @@ export * from './display';