-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function.length is lost #76
Comments
The same may be happening with |
Hm, so according to MDN the property is not writeable but configurable. I tested this and it looked like it worked (but not sure if that applies to all engines): function blabla (a, b, c) {}
Object.defineProperty(blabla, 'length', { value: 5 })
console.log(blabla.length); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function.length
is lost, and I see an error callinghooks
without hooks argument.The text was updated successfully, but these errors were encountered: