OLD | NEW |
1 #!/usr/bin/env node | 1 #!/usr/bin/env node |
2 | 2 |
3 /** | 3 /** |
4 * marked tests | 4 * marked tests |
5 * Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed) | 5 * Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed) |
6 * https://github.com/chjj/marked | 6 * https://github.com/chjj/marked |
7 */ | 7 */ |
8 | 8 |
9 /** | 9 /** |
10 * Modules | 10 * Modules |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 process.exit(main(process.argv.slice()) ? 0 : 1); | 534 process.exit(main(process.argv.slice()) ? 0 : 1); |
535 } else { | 535 } else { |
536 exports = main; | 536 exports = main; |
537 exports.main = main; | 537 exports.main = main; |
538 exports.runTests = runTests; | 538 exports.runTests = runTests; |
539 exports.runBench = runBench; | 539 exports.runBench = runBench; |
540 exports.load = load; | 540 exports.load = load; |
541 exports.bench = bench; | 541 exports.bench = bench; |
542 module.exports = exports; | 542 module.exports = exports; |
543 } | 543 } |
OLD | NEW |