testing/xpcshell/node-spdy/lib/spdy/protocol/v2/index.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/xpcshell/node-spdy/lib/spdy/protocol/v2/index.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,12 @@
     1.4 +var v2;
     1.5 +
     1.6 +try {
     1.7 +  v2 = require('./protocol.node');
     1.8 +} catch (e) {
     1.9 +  v2 = require('./protocol.js');
    1.10 +}
    1.11 +module.exports = v2;
    1.12 +
    1.13 +v2.Framer = require('./framer').Framer;
    1.14 +
    1.15 +v2.dictionary = require('./dictionary').dictionary;

mercurial