electron/spec/fixtures/module/to-string-non-function.js

5 lines
104 B
JavaScript
Raw Normal View History

function hello () {
}
hello.toString = 'hello'
2018-09-13 16:10:51 +00:00
module.exports = { functionWithToStringProperty: hello }