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

Side by Side Diff: polymer_0.4.0/bower_components/polymer-test-tools/chai/chai.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 ;(function(){ 1 ;(function(){
2 2
3 /** 3 /**
4 * Require the given path. 4 * Require the given path.
5 * 5 *
6 * @param {String} path 6 * @param {String} path
7 * @return {Object} exports 7 * @return {Object} exports
8 * @api public 8 * @api public
9 */ 9 */
10 10
(...skipping 4762 matching lines...) Expand 10 before | Expand all | Expand 10 after
4773 require.alias("chaijs-type-detect/lib/type.js", "chaijs-deep-eql/deps/type-detec t/index.js"); 4773 require.alias("chaijs-type-detect/lib/type.js", "chaijs-deep-eql/deps/type-detec t/index.js");
4774 require.alias("chaijs-type-detect/lib/type.js", "chaijs-type-detect/index.js"); 4774 require.alias("chaijs-type-detect/lib/type.js", "chaijs-type-detect/index.js");
4775 require.alias("chaijs-deep-eql/lib/eql.js", "chaijs-deep-eql/index.js"); 4775 require.alias("chaijs-deep-eql/lib/eql.js", "chaijs-deep-eql/index.js");
4776 require.alias("chai/index.js", "chai/index.js");if (typeof exports == "object") { 4776 require.alias("chai/index.js", "chai/index.js");if (typeof exports == "object") {
4777 module.exports = require("chai"); 4777 module.exports = require("chai");
4778 } else if (typeof define == "function" && define.amd) { 4778 } else if (typeof define == "function" && define.amd) {
4779 define([], function(){ return require("chai"); }); 4779 define([], function(){ return require("chai"); });
4780 } else { 4780 } else {
4781 this["chai"] = require("chai"); 4781 this["chai"] = require("chai");
4782 }})(); 4782 }})();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698