aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/$.iobject.js
blob: cea38fab4598e7cc6db26c677e2c0fc5a48fae06 (plain)
1
2
3
4
5
// fallback for non-array-like ES3 and non-enumerable old V8 strings
var cof = require('./$.cof');
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
  return cof(it) == 'String' ? it.split('') : Object(it);
};