mirror of
https://github.com/github/codeql.git
synced 2026-05-10 09:19:27 +02:00
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
// a.js
|
|
var b = require('./b');
|
|
|
|
var title = "Ms";
|
|
|
|
function example() {
|
|
return title + " " + b.fullName;
|
|
}
|
|
|
|
// b.js
|
|
var firstName = "Ada",
|
|
lastName = "Lovelace";
|
|
|
|
exports.fullName = firstName + " " + lastName;
|