electron/spec/fixtures/module/function-with-properties.js
2016-08-22 17:07:17 -07:00

9 lines
98 B
JavaScript

function foo() {}
foo.bar = 'baz'
foo.nested = {
prop: 'yes'
}
module.exports = {
foo: foo
}