electron/spec/fixtures/module/property.js
2016-08-22 17:07:18 -07:00

11 lines
174 B
JavaScript

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