Blame view

node_modules/regjsparser/bin/parser 1.34 KB
aaac7fed   liuqimichale   add
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
50
  #!/usr/bin/env node
  (function() {
  
    var fs = require('fs');
    var parse = require('../parser').parse;
    var jsesc = require('jsesc');
    var regexes = process.argv.splice(2);
    var first = regexes[0];
    var data;
    var log = console.log;
    var main = function() {
      if (/^(?:-h|--help|undefined)$/.test(first)) {
        log([
          '\nUsage:\n',
          '\tregjsparser [regex ...]',
          '\tregjsparser [-h | --help]',
          '\nExamples:\n',
          '\tregjsparser \'^foo.bar$\'',
          '\tregjsparser \'[a-zA-Z0-9]\''
        ].join('\n'));
        return process.exit(1);
      }
  
      regexes.forEach(function(snippet) {
        var result;
        try {
          result = parse(snippet);
          log(jsesc(result, {
            'json': true,
            'compact': false,
            'indent': '\t'
          }));
        } catch(error) {
          log(error.message + '\n');
          log('Error: failed to parse. Make sure the regular expression is valid.');
          log('If you think this is a bug in regjsparser, please report it:');
          log('\thttps://github.com/jviereck/regjsparser/issues/new');
          log('\nStack trace:\n');
          log(error.stack);
          return process.exit(1);
        }
      });
      // Return with exit status 0 outside of the `forEach` loop, in case
      // multiple regular expressions were passed in.
      return process.exit(0);
    };
  
    main();
  
  }());