Files
codeql/javascript/ql/test/library-tests/GlobalAccessPaths/other_ns.js
2019-07-23 17:08:02 +01:00

7 lines
172 B
JavaScript

// use NS from another file, that doesn't truly assign to it
(function(ns) {
ns.foo.bar; // 'NS.foo.bar'
})(NS = NS || {});
Conflict = {}; // assigned in multiple files