diff --git a/fibers.js b/fibers.js index bc81ec7..ce5cf15 100644 --- a/fibers.js +++ b/fibers.js @@ -1,5 +1,8 @@ var fs = require('fs'), path = require('path'); +// Seed random numbers [gh-82] +Math.random(); + // Look for binary for this platform var v8 = 'v8-'+ /[0-9]+\.[0-9]+/.exec(process.versions.v8)[0]; var modPath = path.join(__dirname, 'bin', process.platform+ '-'+ process.arch+ '-'+ v8, 'fibers');