Skip to content

Commit

Permalink
Merge pull request jackmoore#255 from ledermann/fix-es5-fallback
Browse files Browse the repository at this point in the history
Fix fallback to ES5
  • Loading branch information
jackmoore committed Sep 14, 2015
2 parents 08d62d0 + 5203651 commit ec1c034
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 ec1c034

Please sign in to comment.