Comparing version 0.1.3 to 0.1.5
@@ -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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
10332
0
2