mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
7 lines
172 B
JavaScript
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
|