mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
define([
|
|
'a.js', // not resolved: ambiguous
|
|
'foo', // resolved to `lib/foo.js`
|
|
'nested/a', // resolved to `lib/nested/a.js`
|
|
'lib/foo.js' // resolved to `lib/foo.js`
|
|
], function(a, b, exports) {
|
|
return {
|
|
foo: a.foo,
|
|
bar: b.bar
|
|
};
|
|
}); |