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

tallstack

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tallstack - npm Package Compare versions

Comparing version 0.0.5 to 0.1.0

13

index.d.ts

@@ -1,5 +0,12 @@

export function call<T>(func: (...args: any[]) => T, args: any[]): (...args: any[]) => T;
export function call<S extends any[], T>(func: (...args: S) => T, ...args: S): T;
export function callWithContext<T>(thisArg: any, func: (...args: any[]) => T, args: any[]): (...args: any[]) => T;
export function callWithContext<S extends any[], T>(
thisArg: any,
func: (...args: S) => T,
...args: S
): T;
export function recursive<T>(func: (...args: any[]) => T, thisArg: any): any;
export function recursive<S extends any[], T>(
func: (...args: S) => T,
thisArg?: any,
): (...args: S) => T;
{
"name": "tallstack",
"version": "0.0.5",
"version": "0.1.0",
"description": "A library that allows you to define recursive functions in JavaScript without stack overflow.",

@@ -5,0 +5,0 @@ "main": "index.js",

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