mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04: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}`
|
|
}
|