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
// Build sub-object if nothing already exists at the keypath
if (cursor[_subkey] === undefined) {
cursor = {}
} else {
// Increment cursor used to track the object at the current depth
cursor = cursor[_subkey]
}
in folder lib utils.js
where cursor[_subkey] is a primitive value ,like boolean , cursor[_subkey] = {} may get undefined value.
so code below
will still got an undefind value.
I just don't much about rc, I found this problem when I install another project.
tks
The text was updated successfully, but these errors were encountered: