Files

14 lines
180 B
TypeScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
"use strict";
function checkThis() {
if (this !== undefined) {
throw new Error("this is not undefined");
}
}
checkThis();
module.exports = {
FORCE_COMMON_JS: true,
};