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

extra-utils

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-utils - npm Package Compare versions

Comparing version 3.1.0 to 3.2.0

5

lib/pipe.d.ts

@@ -0,1 +1,6 @@

export declare function pipe<T, U, V>(value: T, ...operators: [
(value: T) => U,
...Array<(value: U) => U>,
(value: U) => V
]): V;
export declare function pipe<T, U>(value: T, ...operators: [

@@ -2,0 +7,0 @@ ...Array<(value: T) => T>,

2

package.json
{
"name": "extra-utils",
"version": "3.1.0",
"version": "3.2.0",
"description": "Utilities for JavaScript and Typescript",

@@ -5,0 +5,0 @@ "files": [

@@ -14,2 +14,10 @@ # extra-utils

```ts
function pipe<T, U, V>(
value: T
, ...operators: [
(value: T) => U
, ...Array<(value: U) => U>
, (value: U) => V
]
): V
function pipe<T, U>(

@@ -16,0 +24,0 @@ value: T

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