mirror of
https://github.com/electron/electron.git
synced 2026-01-27 08:18:28 -05:00
12 lines
174 B
JavaScript
12 lines
174 B
JavaScript
exports.property = 1127
|
|
|
|
function func () {
|
|
|
|
}
|
|
func.property = 'foo'
|
|
exports.func = func
|
|
|
|
exports.getFunctionProperty = () => {
|
|
return `${func.property}-${process.type}`
|
|
}
|