Opal-Estate-Pro/node_modules/core-js/modules/_iobject.js
2019-09-13 11:27:52 +07:00

7 lines
289 B
JavaScript

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