Files
ladybird/Tests/LibJS/Runtime/functions/function-strict-mode.js
2026-01-22 07:46:48 -05:00

9 lines
211 B
JavaScript

test("strict mode does not apply global object to |this|", () => {
"use strict";
let functionThis;
(function () {
functionThis = this;
})();
expect(functionThis).toBeUndefined();
});