Huge News!Announcing our $40M Series B led by Abstract Ventures.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.1.3 to 0.1.5

4

index.js

@@ -11,3 +11,3 @@ /*

Author: Dylan Cutler
License: MIT
License: Apache-2.0
Copyright: February, 2019

@@ -137,3 +137,3 @@

* @param {any} thisArg
* @param {(...args: S) => T} func
* @return {(...args: S) => T}
*/

@@ -140,0 +140,0 @@ function recursive(func, thisArg) {

{
"name": "tallstack",
"version": "0.1.3",
"version": "0.1.5",
"description": "A library that allows you to define recursive functions in JavaScript without stack overflow.",

@@ -21,3 +21,3 @@ "main": "index.js",

"author": "Dylan Cutler (DCtheTall)",
"license": "MIT",
"license": "Apache-2.0",
"bugs": {

@@ -28,4 +28,5 @@ "url": "https://github.com/DCtheTall/tallstack/issues"

"devDependencies": {
"jest": "^24.1.0"
"jest": "^24.8.0",
"lodash": "^4.17.13"
}
}

@@ -70,3 +70,3 @@ # tallstack

if (N === 0) return 1;
return call(this.multiply, N, call(factorial, N - 1));
return call(this.multiply, N, callWithContext(this, factorialWithThis, N - 1));
}

@@ -73,0 +73,0 @@

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