UNPKG

@r1tsu/payload

Version:

7 lines (6 loc) 282 B
export const getObjectDotNotation = (obj, path, defaultValue)=>{ if (!path || !obj) return defaultValue; const result = path.split('.').reduce((o, i)=>o?.[i], obj); return result === undefined ? defaultValue : result; }; //# sourceMappingURL=getObjectDotNotation.js.map