You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
I try to use [email protected] to make my lib as small as possible
But I got a bug when I use 'get' from lodash.
I read the code and noticed
in mapping.js
But , actually in lodash _baseGet is:
function baseGet(object, path) {
path = castPath(path, object);
var index = 0,
length = path.length;
while (object != null && index < length) {
object = object[toKey(path[index++])];
}
return (index && index == length) ? object : undefined;
}
they are not equal
The text was updated successfully, but these errors were encountered: