Files
bun-src/test/bundler/transpiler/strict-mode-fixture.ts
2026-08-27 21:09:14 +00:00

14 lines
180 B
TypeScript
Generated

"use strict";
function checkThis() {
if (this !== undefined) {
throw new Error("this is not undefined");
}
}
checkThis();
module.exports = {
FORCE_COMMON_JS: true,
};