Skip to content

Commit

Permalink
Fix some missing semicolons...
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Dosé committed Jun 25, 2017
1 parent e54d208 commit ff1741d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ansi_up.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
factory(exports);
} else {
// Browser globals
var exp = {}
var exp = {};
factory(exp);
root.AnsiUp = exp.default
root.AnsiUp = exp.default;
}
}(this, function (exports) {
"use strict";
Expand Down
4 changes: 2 additions & 2 deletions umd.header
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
factory(exports);
} else {
// Browser globals
var exp = {}
var exp = {};
factory(exp);
root.AnsiUp = exp.default
root.AnsiUp = exp.default;
}
}(this, function (exports) {

0 comments on commit ff1741d

Please sign in to comment.