Files
codeql/javascript/ql/test/library-tests/ThisExpr/module-exports.js
Esben Sparre Andreasen ae8d38236b JS: add some tests for this
2020-03-13 14:09:23 +01:00

8 lines
169 B
JavaScript

var fs = require('fs');
this;
exports.foo = function() { this; };
module.exports.bar = function() { this; };
exports.baz = () => this;
module.exports.qux = () => this;