Skip to content

Commit

Permalink
Reformat excess bracket notation (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanve authored Nov 4, 2017
1 parent 449e81e commit 701e98d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions response.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* @license MIT
*/
!function(root, name, make) {
var $ = root['jQuery'] || root['Zepto'] || root['ender'] || root['elo'];
if (typeof module != 'undefined' && module['exports']) module['exports'] = make($);
var $ = root.jQuery || root.Zepto || root.ender || root.elo;
if (typeof module != 'undefined' && module.exports) module.exports = make($);
else root[name] = make($);
}(this, 'Response', function($) {

Expand Down
Loading

0 comments on commit 701e98d

Please sign in to comment.