diff -r 000000000000 -r 6474c204b198 testing/xpcshell/node-spdy/lib/spdy/protocol/v2/index.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testing/xpcshell/node-spdy/lib/spdy/protocol/v2/index.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,12 @@ +var v2; + +try { + v2 = require('./protocol.node'); +} catch (e) { + v2 = require('./protocol.js'); +} +module.exports = v2; + +v2.Framer = require('./framer').Framer; + +v2.dictionary = require('./dictionary').dictionary;