-
Notifications
You must be signed in to change notification settings
Undefined used as weak map key #1319
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
Labels
Comments
Can you post a small repro so I can add a unit test. |
Sure. I can try to isolate the issue on the train home... |
This seems to do it: var _ = require('lodash');
function run(a, b) {
console.log('run', arguments);
}
_.curry(run)(1); produces
|
Patched! |
Thanks |
megawac
added a commit
to megawac/lodash
that referenced
this issue
Jul 6, 2015
jdalton
added a commit
that referenced
this issue
Jul 10, 2015
jdalton
added a commit
that referenced
this issue
Jul 20, 2015
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I am using lodash with node.js 0.12.5 and am getting following error thrown.
On a first glance it seems strange to use
other
as a lookup key here as all non-lodash functions will cause it to evaluate to undefined (thus causing the error).The text was updated successfully, but these errors were encountered: