File size: 702 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import isKey from './isKey';
import isNullOrUndefined from './isNullOrUndefined';
import isObject from './isObject';
import isUndefined from './isUndefined';
import stringToPath from './stringToPath';
export default <T>(
object: T,
path?: string | null,
defaultValue?: unknown,
): any => {
if (!path || !isObject(object)) {
return defaultValue;
}
const result = (isKey(path) ? [path] : stringToPath(path)).reduce(
(result, key) =>
isNullOrUndefined(result) ? result : result[key as keyof {}],
object,
);
return isUndefined(result) || result === object
? isUndefined(object[path as keyof T])
? defaultValue
: object[path as keyof T]
: result;
};
|