Skip to content

Commit

Permalink
Fix fallback to ES5
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Sep 13, 2015
1 parent 08d62d0 commit 5203651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/autosize.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
})(this, function (exports, module) {
'use strict';

var set = Set ? new Set() : (function () {
var set = (typeof Set != "undefined") ? new Set() : (function () {
var list = [];

return {
Expand Down

0 comments on commit 5203651

Please sign in to comment.