electron/spec-main/fixtures/module/property.js
2019-12-09 10:27:30 -08:00

11 lines
174 B
JavaScript

exports.property = 1127
function func () {
}
func.property = 'foo'
exports.func = func
exports.getFunctionProperty = () => {
return `${func.property}-${process.type}`
}