lodash.foreach
Advanced tools
Comparing version 3.0.1 to 3.0.2
36
index.js
/** | ||
* lodash 3.0.0 (Custom Build) <https://lodash.com/> | ||
* lodash 3.0.2 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modern modularize exports="npm" -o ./` | ||
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> | ||
* Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE> | ||
* Based on Underscore.js 1.8.2 <http://underscorejs.org/LICENSE> | ||
* Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
@@ -15,4 +15,20 @@ * Available under MIT license <https://lodash.com/license> | ||
/** | ||
* Creates a function for `_.forEach` or `_.forEachRight`. | ||
* | ||
* @private | ||
* @param {Function} arrayFunc The function to iterate over an array. | ||
* @param {Function} eachFunc The function to iterate over a collection. | ||
* @returns {Function} Returns the new each function. | ||
*/ | ||
function createForEach(arrayFunc, eachFunc) { | ||
return function(collection, iteratee, thisArg) { | ||
return (typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection)) | ||
? arrayFunc(collection, iteratee) | ||
: eachFunc(collection, bindCallback(iteratee, thisArg, 3)); | ||
}; | ||
} | ||
/** | ||
* Iterates over elements of `collection` invoking `iteratee` for each element. | ||
* The `iteratee` is bound to `thisArg` and invoked with three arguments; | ||
* The `iteratee` is bound to `thisArg` and invoked with three arguments: | ||
* (value, index|key, collection). Iterator functions may exit iteration early | ||
@@ -35,14 +51,14 @@ * by explicitly returning `false`. | ||
* | ||
* _([1, 2, 3]).forEach(function(n) { console.log(n); }).value(); | ||
* _([1, 2]).forEach(function(n) { | ||
* console.log(n); | ||
* }).value(); | ||
* // => logs each value from left to right and returns the array | ||
* | ||
* _.forEach({ 'one': 1, 'two': 2, 'three': 3 }, function(n, key) { console.log(n, key); }); | ||
* _.forEach({ 'a': 1, 'b': 2 }, function(n, key) { | ||
* console.log(n, key); | ||
* }); | ||
* // => logs each value-key pair and returns the object (iteration order is not guaranteed) | ||
*/ | ||
function forEach(collection, iteratee, thisArg) { | ||
return (typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection)) | ||
? arrayEach(collection, iteratee) | ||
: baseEach(collection, bindCallback(iteratee, thisArg, 3)); | ||
} | ||
var forEach = createForEach(arrayEach, baseEach); | ||
module.exports = forEach; |
Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> | ||
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas, | ||
Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, | ||
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> | ||
@@ -4,0 +4,0 @@ |
{ | ||
"name": "lodash.foreach", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "The modern build of lodash’s `_.forEach` as a module.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/", |
@@ -1,2 +0,2 @@ | ||
# lodash.foreach v3.0.1 | ||
# lodash.foreach v3.0.2 | ||
@@ -20,2 +20,2 @@ The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.forEach` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module. | ||
See the [documentation](https://lodash.com/docs#forEach) or [package source](https://github.com/lodash/lodash/blob/3.0.1-npm-packages/lodash.foreach) for more details. | ||
See the [documentation](https://lodash.com/docs#forEach) or [package source](https://github.com/lodash/lodash/blob/3.0.2-npm-packages/lodash.foreach) for more details. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5259
59