export function _get(object, path, fallback) {
  const value = path.split(".").reduce((hash, field) => hash && hash[field], object);
  return typeof value === "undefined" ? fallback : value;
}