summaryrefslogtreecommitdiffstats
path: root/toolkit/components/aboutperformance/tests/browser/workers_script.js
blob: 737ea90c47620827c8e9f05aca8fbfae46dac68b (plain)
1
2
3
4
5
6
7
8
9
10
function fib(n) {
  if (n < 2) {
    return 1;
  }
  return fib(n - 1) + fib(n - 2);
}

onmessage = function(e) {
  self.postMessage(fib(Number(e.data)));
};