Welcome to mirror list, hosted at ThFree Co, Russian Federation.

opener-bin.js « bin « opener « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a051ea8f03f192c2a3e96a76fa53b474d817bbef (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node
"use strict";

var opener = require("..");

opener(process.argv.slice(2), function (error) {
    if (error) {
        throw error;
    }
});