Skip to content

Commit

Permalink
fix: default interop compat for "module" condition
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored Jun 30, 2022
1 parent 5bfaf87 commit 68870a6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tslib.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,3 +246,31 @@ export function __classPrivateFieldIn(state, receiver) {
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
return typeof state === "function" ? receiver === state : state.has(receiver);
}

export default {
__extends,
__assign,
__rest,
__decorate,
__param,
__metadata,
__awaiter,
__generator,
__createBinding,
__exportStar,
__values,
__read,
__spread,
__spreadArrays,
__spreadArray,
__await,
__asyncGenerator,
__asyncDelegator,
__asyncValues,
__makeTemplateObject,
__importStar,
__importDefault,
__classPrivateFieldGet,
__classPrivateFieldSet,
__classPrivateFieldIn,
};

0 comments on commit 68870a6

Please sign in to comment.