UNPKG

actus

Version:
10 lines (9 loc) 229 B
export default function getSlice(object, path) { return path.reduce( (accumulator, property) => accumulator === undefined || accumulator === null ? undefined : accumulator[property], object ); }