-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from KrisSiegel/3.0.0
3.0.0
- Loading branch information
Showing
39 changed files
with
1,904 additions
and
535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- "5.0" | ||
- "4.2" | ||
- "4.1" | ||
- "4.0" | ||
- "0.12" | ||
- "0.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<html> | ||
<head> | ||
<title>Benchmarks</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<script src="node_modules/async/dist/async.min.js"></script> | ||
<script src="node_modules/benchmark/benchmark.js"></script> | ||
<script type='text/javascript'> | ||
var benchmark = Benchmark; | ||
</script> | ||
<script type='text/javascript' src="msngr.js"></script> | ||
<!-- Start JS Files --> | ||
<!-- End JS Files --> | ||
</head> | ||
<body> | ||
<div id="benchess"></div> | ||
<script type='text/javascript'> | ||
async.series(window.benchmarkers, function (err, results) { | ||
console.log("Done executing benchmarks"); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<html> | ||
<head> | ||
<title>Benchmarks</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<script src="node_modules/async/dist/async.min.js"></script> | ||
<script src="node_modules/benchmark/benchmark.js"></script> | ||
<script type='text/javascript'> | ||
var benchmark = Benchmark; | ||
</script> | ||
<script type='text/javascript' src="msngr.min.js"></script> | ||
<!-- Start JS Files --> | ||
<!-- End JS Files --> | ||
</head> | ||
<body> | ||
<div id="benchess"></div> | ||
<script type='text/javascript'> | ||
async.series(window.benchmarkers, function (err, results) { | ||
console.log("Done executing benchmarks"); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.