Files
2024-04-09 14:32:58 +02:00

12 lines
145 B
JavaScript

export const a = {
b: {
c: {
d: {
e: function() {}
}
}
}
};
a.shortcut = a.b.c;