UNPKG

@react-navigation/core

Version:

Core utilities for building navigators

18 lines (17 loc) 469 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = fromEntries; // Object.fromEntries is not available in older iOS versions function fromEntries(entries) { return entries.reduce((acc, _ref) => { let [k, v] = _ref; if (acc.hasOwnProperty(k)) { throw new Error(`A value for key '${k}' already exists in the object.`); } acc[k] = v; return acc; }, {}); } //# sourceMappingURL=fromEntries.js.map