source: trip-planner-front/node_modules/core-js/internals/indexed-object.js@ ceaed42

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

initial commit

  • Property mode set to 100644
File size: 511 bytes
Line 
1var fails = require('../internals/fails');
2var classof = require('../internals/classof-raw');
3
4var split = ''.split;
5
6// fallback for non-array-like ES3 and non-enumerable old V8 strings
7module.exports = fails(function () {
8 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
9 // eslint-disable-next-line no-prototype-builtins -- safe
10 return !Object('z').propertyIsEnumerable(0);
11}) ? function (it) {
12 return classof(it) == 'String' ? split.call(it, '') : Object(it);
13} : Object;
Note: See TracBrowser for help on using the repository browser.