electron/spec-main/fixtures/module/property.js

12 lines
179 B
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
exports.property = 1127;
function func () {
}
2020-03-20 20:28:31 +00:00
func.property = 'foo';
exports.func = func;
exports.getFunctionProperty = () => {
2020-03-20 20:28:31 +00:00
return `${func.property}-${process.type}`;
};