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

@typed/lambda

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typed/lambda - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

2

cjs/types.d.ts

@@ -41,4 +41,4 @@ export declare type Primitive = undefined | null | boolean | string | number | Function;

declare type CastArray<T> = T extends readonly any[] ? T : [];
declare type RemoveUnknown<A> = [A] extends [unknown] ? never : A;
declare type RemoveUnknown<A> = [unknown] extends [A] ? never : A;
export {};
//# sourceMappingURL=types.d.ts.map

@@ -41,4 +41,4 @@ export declare type Primitive = undefined | null | boolean | string | number | Function;

declare type CastArray<T> = T extends readonly any[] ? T : [];
declare type RemoveUnknown<A> = [A] extends [unknown] ? never : A;
declare type RemoveUnknown<A> = [unknown] extends [A] ? never : A;
export {};
//# sourceMappingURL=types.d.ts.map
{
"name": "@typed/lambda",
"version": "3.2.0",
"version": "3.2.1",
"description": "Helpful functions for working in a functional style",

@@ -29,3 +29,3 @@ "main": "./cjs/index.js",

"dependencies": {
"@typed/common": "^3.2.0"
"@typed/common": "^3.3.0"
},

@@ -39,4 +39,4 @@ "publishConfig": {

"sideEffects": false,
"gitHead": "8802f002b573472e8eac58ef8bc3b5724f749bce",
"gitHead": "1aa9db7dae71fb3c8ab1e548304aaebe1f5e8cc1",
"unpkg": "./umd/index.js"
}

@@ -119,2 +119,2 @@ export type Primitive = undefined | null | boolean | string | number | Function

type CastArray<T> = T extends readonly any[] ? T : []
type RemoveUnknown<A> = [A] extends [unknown] ? never : A
type RemoveUnknown<A> = [unknown] extends [A] ? never : A

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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