5 lines
102 B
JavaScript
5 lines
102 B
JavaScript
|
function hello () {
|
||
|
}
|
||
|
hello.toString = 'hello'
|
||
|
module.exports = {functionWithToStringProperty: hello}
|