projecte_ionic/node_modules/lodash/toIterator.js
2022-02-09 18:30:03 +01:00

24 lines
403 B
JavaScript
Executable file

/**
* Enables the wrapper to be iterable.
*
* @name Symbol.iterator
* @memberOf _
* @since 4.0.0
* @category Seq
* @returns {Object} Returns the wrapper object.
* @example
*
* var wrapped = _([1, 2]);
*
* wrapped[Symbol.iterator]() === wrapped;
* // => true
*
* Array.from(wrapped);
* // => [1, 2]
*/
function wrapperToIterator() {
return this;
}
module.exports = wrapperToIterator;