electron/spec/fixtures/module/property.js

12 lines
174 B
JavaScript
Raw Normal View History

2016-03-25 20:03:49 +00:00
exports.property = 1127
function func () {
}
func.property = 'foo'
exports.func = func
exports.getFunctionProperty = () => {
return `${func.property}-${process.type}`
}