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

Side by Side Diff: polymer_0.5.0/bower_components/marked/lib/marked.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 /** 1 /**
2 * marked - a markdown parser 2 * marked - a markdown parser
3 * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed) 3 * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
4 * https://github.com/chjj/marked 4 * https://github.com/chjj/marked
5 */ 5 */
6 6
7 ;(function() { 7 ;(function() {
8 8
9 /** 9 /**
10 * Block-Level Grammar 10 * Block-Level Grammar
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 module.exports = marked; 1257 module.exports = marked;
1258 } else if (typeof define === 'function' && define.amd) { 1258 } else if (typeof define === 'function' && define.amd) {
1259 define(function() { return marked; }); 1259 define(function() { return marked; });
1260 } else { 1260 } else {
1261 this.marked = marked; 1261 this.marked = marked;
1262 } 1262 }
1263 1263
1264 }).call(function() { 1264 }).call(function() {
1265 return this || (typeof window !== 'undefined' ? window : global); 1265 return this || (typeof window !== 'undefined' ? window : global);
1266 }()); 1266 }());
OLDNEW
« no previous file with comments | « polymer_0.5.0/bower_components/marked/index.js ('k') | polymer_0.5.0/bower_components/marked/man/marked.1 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698