Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Side by Side Diff: polymer_0.4.0/bower_components/marked/test/index.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698