forked from olcxjas-softworks/LarpixClient
Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
23
electron/node_modules/lodash/toIterator.js
generated
vendored
Normal file
23
electron/node_modules/lodash/toIterator.js
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue