electron/spec/fixtures/module/function-with-properties.js

10 lines
99 B
JavaScript
Raw Normal View History

2016-08-16 17:54:16 +00:00
function foo () {}
foo.bar = 'baz'
2016-08-16 17:37:51 +00:00
foo.nested = {
prop: 'yes'
}
module.exports = {
foo: foo
}