12 lines
167 B
TypeScript
Generated
12 lines
167 B
TypeScript
Generated
function checkThis() {
|
|
if (this !== globalThis) {
|
|
throw new Error("this is not globalThis");
|
|
}
|
|
}
|
|
|
|
checkThis();
|
|
|
|
module.exports = {
|
|
FORCE_COMMON_JS: true,
|
|
};
|