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

@kiwi-lib/utils

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kiwi-lib/utils - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

5

lib/types/function.d.ts

@@ -6,3 +6,4 @@ export declare type Function5<A, B, C, D, E, R> = (a: A, b: B, c: C, d: D, e: E) => R;

export declare type Function1<A, R> = (a: A) => R;
export declare type Function<A, B, C = undefined, D = undefined, E = undefined, F = undefined> = F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? Function1<A, B> : Function2<A, B, C> : Function3<A, B, C, D> : Function4<A, B, C, D, E> : Function5<A, B, C, D, E, F>;
export declare type AsyncFunction<A, B, C = undefined, D = undefined, E = undefined, F = undefined> = F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? Function1<A, Promise<B>> : Function2<A, B, Promise<C>> : Function3<A, B, C, Promise<D>> : Function4<A, B, C, D, Promise<E>> : Function5<A, B, C, D, E, Promise<F>>;
export declare type Function0<R> = () => R;
export declare type Function<A, B, C = undefined, D = undefined, E = undefined, F = undefined> = F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? B extends undefined ? Function0<A> : Function1<A, B> : Function2<A, B, C> : Function3<A, B, C, D> : Function4<A, B, C, D, E> : Function5<A, B, C, D, E, F>;
export declare type AsyncFunction<A, B, C = undefined, D = undefined, E = undefined, F = undefined> = F extends undefined ? E extends undefined ? D extends undefined ? C extends undefined ? B extends undefined ? Function0<Promise<A>> : Function1<A, Promise<B>> : Function2<A, B, Promise<C>> : Function3<A, B, C, Promise<D>> : Function4<A, B, C, D, Promise<E>> : Function5<A, B, C, D, E, Promise<F>>;

2

package.json
{
"name": "@kiwi-lib/utils",
"version": "0.0.4",
"version": "0.0.5",
"main": "src/index.ts",

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

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