This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define a module "a" that depends another module called "b". If | |
// that other module also uses this type of boilerplate, then | |
// in the browser, it will create a global .b that is used below. | |
// If you do not want to support the browser global path, then you | |
// can remove the `root` use and the passing `this` as the first arg to | |
// the top function. | |
(function(root, factory) { | |
if (typeof exports === 'object') { |