continuation.js
Advanced tools
Comparing version 0.0.7 to 0.0.8
#!/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]; |
{ | ||
"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 |
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
122429
2638
97