source: trip-planner-front/node_modules/core-js/internals/to-indexed-object.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 285 bytes
Line 
1// toObject with fallback for non-array-like ES3 strings
2var IndexedObject = require('../internals/indexed-object');
3var requireObjectCoercible = require('../internals/require-object-coercible');
4
5module.exports = function (it) {
6 return IndexedObject(requireObjectCoercible(it));
7};
Note: See TracBrowser for help on using the repository browser.