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.0.3 to 0.0.4

9

index.js

@@ -111,18 +111,17 @@ /*

while (this.frames.length !== 0) {
cur = this.frames.pop();
cur = this.frames[this.frames.length - 1];
if (cur.shouldDelayExecution()) {
this.frames.push(cur);
cur.pushUnevaluatedArguments(this.frames);
continue;
}
cur = this.frames.pop();
let result = cur.evaluate();
while (result === NULL) {
cur = this.frames.pop();
cur = this.frames[this.frames.length - 1];
if (cur.shouldDelayExecution()) {
this.frames.push(cur);
cur.pushUnevaluatedArguments(this.frames);
continue OUTER;
}
cur = this.frames.pop();
result = cur.evaluate();

@@ -129,0 +128,0 @@ }

{
"name": "tallstack",
"version": "0.0.3",
"version": "0.0.4",
"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