Open
Description
This is the question from @welefen .
function f(x) {
return function g() {
'hide source'
return x
}
}
f.toString() // is source code of g() still available here?
A:
function f(x) {
return function g() {
'hide source'
return x
}
}
or B:
function f(x) {
return function g() { [native code] }
}
I guess it should be A but can't find direct answer about it in the README.
Metadata
Metadata
Assignees
Labels
No labels