Blame view

node_modules/cli-width/index.js 1023 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  'use strict';
  
  exports = module.exports = cliWidth;
  
  function normalizeOpts(options) {
    var defaultOpts = {
      defaultWidth: 0,
      output: process.stdout,
      tty: require('tty')
    };
  
    if (!options) {
      return defaultOpts;
    } else {
      Object.keys(defaultOpts).forEach(function (key) {
        if (!options[key]) {
          options[key] = defaultOpts[key];
        }
      });
  
      return options;
    }
  }
  
  function cliWidth(options) {
    var opts = normalizeOpts(options);
  
    if (opts.output.getWindowSize) {
      return opts.output.getWindowSize()[0] || opts.defaultWidth;
    } else {
      if (opts.tty.getWindowSize) {
        return opts.tty.getWindowSize()[1] || opts.defaultWidth;
      } else {
        if (opts.output.columns) {
          return opts.output.columns;
        } else {
          if (process.env.CLI_WIDTH) {
            var width = parseInt(process.env.CLI_WIDTH, 10);
  
            if (!isNaN(width) && width !== 0) {
              return width;
            }
          }
        }
  
        return opts.defaultWidth;
      }
    }
  };