Open
Description
openedon Dec 3, 2019
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Metadata
Assignees
Labels
No labels