Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

continuation.js

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

continuation.js - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

5

benchmark/sunspider.js
#!/usr/bin/env node
var argv = process.argv.slice(2);
var benchmark = require('benchmark');

@@ -19,2 +21,5 @@ var _ = require('underscore');

for (var test in benmkzoo.sunspider) {
if (argv.length > 0 && _.indexOf(argv, benmkzoo.sunspider[test].name) === -1) {
continue;
}
suite.push(new benchmark(benmkzoo.sunspider[test]));

@@ -21,0 +26,0 @@ var cps_test = cps_benmkzoo.sunspider[test];

2

package.json
{
"name": "continuation.js",
"description": "Continuation support for Node.js",
"version": "0.0.7",
"version": "0.0.8",
"author": "Daishi Kato <daishi@axlight.com>",

@@ -6,0 +6,0 @@ "dependencies": {

@@ -11,2 +11,18 @@ continuation.js

Comparison
----------
Here is the table showing related projects.
| NAME | continuation.js | [Continuation][1] | [Brushtail][2] | [Cinch][3] |
|-------------------------|-----------------|-------------------|----------------|---------------------|
| Tail Call Optimization | Yes | Yes | Yes | No |
| CPS | Yes | Yes | No | Yes (no trampoline) |
| Native JavaScript | Yes | No | Yes | Yes (almost) |
| `require()` integration | Yes | Yes | No | Yes |
[1]: https://github.com/BYVoid/continuation "BYVoid/continuation"
[2]: https://github.com/pufuwozu/brushtail "pufuwozu/brushtail"
[3]: https://github.com/pguillory/cinch "pguillory/cinch"
How to use

@@ -71,2 +87,3 @@ ----------

* `new Function` is not supported.
* First-class continuation is not supported.

@@ -73,0 +90,0 @@ TODOs

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