3113fc125df1904ef94860eca79af619b5a517efb88a4f7eb160d335b45e12e77b6cfce6987fb8f51a46c208f32b79f370652ed10823aaa98508ac3a6fe454 289 B

123456
  1. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  2. var cof = require('./_cof');
  3. // eslint-disable-next-line no-prototype-builtins
  4. module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
  5. return cof(it) == 'String' ? it.split('') : Object(it);
  6. };