mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
145 B
JavaScript
12 lines
145 B
JavaScript
export const a = {
|
|
b: {
|
|
c: {
|
|
d: {
|
|
e: function() {}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
a.shortcut = a.b.c;
|