// @flow strict import objectEntries from '../polyfills/objectEntries'; import { type ObjMap, type ObjMapLike, type ReadOnlyObjMap, type ReadOnlyObjMapLike, } from './ObjMap'; /* eslint-disable no-redeclare */ declare function toObjMap(obj: ObjMapLike): ObjMap; declare function toObjMap(obj: ReadOnlyObjMapLike): ReadOnlyObjMap; export default function toObjMap(obj) { /* eslint-enable no-redeclare */ if (Object.getPrototypeOf(obj) === null) { return obj; } const map = Object.create(null); for (const [key, value] of objectEntries(obj)) { map[key] = value; } return map; }