Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/rhino/lib/http-platform.js
blob: 2b3f5b8bdc7c65be554ffc08258ce879477a99db (plain)
1
2
3
4
5
6
7
8
9
10

var IO = require('./io').IO;

exports.IO = function (url) {
    return new IO(
        new java.net.URL(url).openStream(),
        null
    );
};