node_modules/cli/examples/cat.js

Maintainability

78.13

Lines of code

15

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 78.13

Created with Raphaël 2.1.0051015202015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 15

Difficulty

10.29

Estimated Errors

0.09

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>3

By SLOC

Created with Raphaël 2.1.0output_file9
1
//#!/usr/bin/env node
2
 
3
var cli = require('cli');
4
 
5
var output_file = function (file) {
6
    cli.withInput(file, function (line, sep, eof) {
7
        if (!eof) {
8
            cli.output(line + sep);
9
        } else if (cli.args.length) {
10
            output_file(cli.args.shift());
11
        }
12
    });
13
};
14
 
15
if (cli.args.length) {
16
    output_file(cli.args.shift());
17
}