Skip to content

Commit

Permalink
Add back 'p !== default'
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed May 13, 2020
1 parent ce3462e commit 0587b2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tslib.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function __createBinding(o, m, k, k2) {
}

export function __exportStar(m, exports) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) exports[p] = m[p];
}

export function __values(o) {
Expand Down
2 changes: 1 addition & 1 deletion tslib.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ var __createBinding;
};

__exportStar = function (m, exports) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) exports[p] = m[p];
};

__values = function (o) {
Expand Down

0 comments on commit 0587b2a

Please sign in to comment.