mirror of
https://github.com/electron/electron.git
synced 2026-02-06 21:25:10 -05:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
exports.property = 1127;
|
|
|
|
function func () {
|
|
|
|
}
|
|
func.property = 'foo';
|
|
exports.func = func;
|
|
|
|
exports.getFunctionProperty = () => {
|
|
return `${func.property}-${process.type}`;
|
|
};
|