JS: add some tests for this

This commit is contained in:
Esben Sparre Andreasen
2020-03-13 07:51:31 +01:00
parent be09c17367
commit ae8d38236b
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
var fs = require('fs');
this;
exports.foo = function() { this; };
module.exports.bar = function() { this; };
exports.baz = () => this;
module.exports.qux = () => this;