Skip to content

Instantly share code, notes, and snippets.

@Awk34
Created December 15, 2016 22:19
Show Gist options
  • Save Awk34/f9e7240ba7de5c14189a6262758327c6 to your computer and use it in GitHub Desktop.
Save Awk34/f9e7240ba7de5c14189a6262758327c6 to your computer and use it in GitHub Desktop.
Untitled benchmark (https://jsbench.github.io/#f9e7240ba7de5c14189a6262758327c6) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Untitled benchmark</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
<h2><code>cmd + alt + j</code> or <code>ctrl + alt + j</code></h2>
</body>
</html>
"use strict";
(function (factory) {
if (typeof Benchmark !== "undefined") {
factory(Benchmark);
} else {
factory(require("benchmark"));
}
})(function (Benchmark) {
var suite = new Benchmark.Suite;
Benchmark.prototype.setup = function () {
let value = 'yes';
};
suite.add("switch(String(value).toLowerCase()) {", function () {
switch(String(value).toLowerCase()) {
case "1": // true value
case "0": // false value
case "true": // true value
case "false": // false value
case "yes": // true value
case "y": // true value
case "no": // false value
case "n": // false value
console.log(true);
break;
}
});
suite.add("var bits = [0, 1, true, false, 'yes', 'y', 'no', 'n'];", function () {
var bits = [0, 1, true, false, 'yes', 'y', 'no', 'n'];
if(bits.indexOf(value) > -1) {
console.log(true);
}
});
suite.on("cycle", function (evt) {
console.log(" - " + evt.target);
});
suite.on("complete", function (evt) {
console.log(new Array(30).join("-"));
var results = evt.currentTarget.sort(function (a, b) {
return b.hz - a.hz;
});
results.forEach(function (item) {
console.log((idx + 1) + ". " + item);
});
});
console.log("Untitled benchmark");
console.log(new Array(30).join("-"));
suite.run();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment