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
set: By default, when calling set with dot notation applied to an object where one of the properties already have a value, it is over-written. The API now allows a flag to not over-write but instead silently do nothing.. (910c1f8)
set: When set is used to deeply set a chained object and one of the properties in the middle of the chain already exists, overwrite the property. For example set({ a: { b: { c: 'a' } } }, 'a.b.c.d.e', 'foo') used to throw an error. It now overwrites the value of the property c where 'a.b.c.d.e'==='foo' (949d42c)
extend: New extend method to add the methods from object-dot to the Object protoype chain so that you can call it directly like so: Object.get(...) (9aabe4b)