Skip to content

Commit 4305ffd

Browse files
committed
Add commas. [ci skip]
1 parent 0588dcb commit 4305ffd

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

lodash.js

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5152,10 +5152,10 @@
51525152
}
51535153

51545154
/**
5155-
* Gets the appropriate "iteratee" function. If the `_.iteratee` method is
5156-
* customized this function returns the custom method, otherwise it returns
5157-
* `baseIteratee`. If arguments are provided, the chosen function is invoked
5158-
* with them and its result is returned.
5155+
* Gets the appropriate "iteratee" function. If `_.iteratee` is customized,
5156+
* this function returns the custom method, otherwise it returns `baseIteratee`.
5157+
* If arguments are provided, the chosen function is invoked with them and
5158+
* its result is returned.
51595159
*
51605160
* @private
51615161
* @param {*} [value] The value to convert to an iteratee.
@@ -6410,8 +6410,8 @@
64106410
/**
64116411
* Gets the index at which the first occurrence of `value` is found in `array`
64126412
* using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
6413-
* for equality comparisons. If `fromIndex` is negative, it's used as the offset
6414-
* from the end of `array`.
6413+
* for equality comparisons. If `fromIndex` is negative, it's used as the
6414+
* offset from the end of `array`.
64156415
*
64166416
* @static
64176417
* @memberOf _
@@ -8380,7 +8380,7 @@
83808380
});
83818381

83828382
/**
8383-
* Checks if `value` is in `collection`. If `collection` is a string it's
8383+
* Checks if `value` is in `collection`. If `collection` is a string, it's
83848384
* checked for a substring of `value`, otherwise
83858385
* [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
83868386
* is used for equality comparisons. If `fromIndex` is negative, it's used as
@@ -8425,8 +8425,8 @@
84258425
/**
84268426
* Invokes the method at `path` of each element in `collection`, returning
84278427
* an array of the results of each invoked method. Any additional arguments
8428-
* are provided to each invoked method. If `methodName` is a function it's
8429-
* invoked for, and `this` bound to, each element in `collection`.
8428+
* are provided to each invoked method. If `methodName` is a function, it's
8429+
* invoked for and `this` bound to, each element in `collection`.
84308430
*
84318431
* @static
84328432
* @memberOf _
@@ -8627,7 +8627,7 @@
86278627
* Reduces `collection` to a value which is the accumulated result of running
86288628
* each element in `collection` thru `iteratee`, where each successive
86298629
* invocation is supplied the return value of the previous. If `accumulator`
8630-
* is not given the first element of `collection` is used as the initial
8630+
* is not given, the first element of `collection` is used as the initial
86318631
* value. The iteratee is invoked with four arguments:
86328632
* (accumulator, value, index|key, collection).
86338633
*
@@ -9492,7 +9492,7 @@
94929492

94939493
/**
94949494
* Creates a function that memoizes the result of `func`. If `resolver` is
9495-
* provided it determines the cache key for storing the result based on the
9495+
* provided, it determines the cache key for storing the result based on the
94969496
* arguments provided to the memoized function. By default, the first argument
94979497
* provided to the memoized function is used as the map cache key. The `func`
94989498
* is invoked with the `this` binding of the memoized function.
@@ -10039,7 +10039,7 @@
1003910039

1004010040
/**
1004110041
* This method is like `_.clone` except that it accepts `customizer` which
10042-
* is invoked to produce the cloned value. If `customizer` returns `undefined`
10042+
* is invoked to produce the cloned value. If `customizer` returns `undefined`,
1004310043
* cloning is handled by the method instead. The `customizer` is invoked with
1004410044
* up to four arguments; (value [, index|key, object, stack]).
1004510045
*
@@ -10518,7 +10518,7 @@
1051810518

1051910519
/**
1052010520
* This method is like `_.isEqual` except that it accepts `customizer` which
10521-
* is invoked to compare values. If `customizer` returns `undefined` comparisons
10521+
* is invoked to compare values. If `customizer` returns `undefined`, comparisons
1052210522
* are handled by the method instead. The `customizer` is invoked with up to
1052310523
* six arguments: (objValue, othValue [, index|key, object, other, stack]).
1052410524
*
@@ -10811,7 +10811,7 @@
1081110811

1081210812
/**
1081310813
* This method is like `_.isMatch` except that it accepts `customizer` which
10814-
* is invoked to compare values. If `customizer` returns `undefined` comparisons
10814+
* is invoked to compare values. If `customizer` returns `undefined`, comparisons
1081510815
* are handled by the method instead. The `customizer` is invoked with five
1081610816
* arguments: (objValue, srcValue, index|key, object, source).
1081710817
*
@@ -11622,7 +11622,7 @@
1162211622
/**
1162311623
* This method is like `_.assignIn` except that it accepts `customizer`
1162411624
* which is invoked to produce the assigned values. If `customizer` returns
11625-
* `undefined` assignment is handled by the method instead. The `customizer`
11625+
* `undefined`, assignment is handled by the method instead. The `customizer`
1162611626
* is invoked with five arguments: (objValue, srcValue, key, object, source).
1162711627
*
1162811628
* **Note:** This method mutates `object`.
@@ -11654,7 +11654,7 @@
1165411654
/**
1165511655
* This method is like `_.assign` except that it accepts `customizer`
1165611656
* which is invoked to produce the assigned values. If `customizer` returns
11657-
* `undefined` assignment is handled by the method instead. The `customizer`
11657+
* `undefined`, assignment is handled by the method instead. The `customizer`
1165811658
* is invoked with five arguments: (objValue, srcValue, key, object, source).
1165911659
*
1166011660
* **Note:** This method mutates `object`.
@@ -11709,7 +11709,7 @@
1170911709

1171011710
/**
1171111711
* Creates an object that inherits from the `prototype` object. If a
11712-
* `properties` object is given its own enumerable string keyed properties
11712+
* `properties` object is given, its own enumerable string keyed properties
1171311713
* are assigned to the created object.
1171411714
*
1171511715
* @static
@@ -12053,7 +12053,7 @@
1205312053

1205412054
/**
1205512055
* Gets the value at `path` of `object`. If the resolved value is
12056-
* `undefined` the `defaultValue` is used in its place.
12056+
* `undefined`, the `defaultValue` is used in its place.
1205712057
*
1205812058
* @static
1205912059
* @memberOf _
@@ -12417,7 +12417,7 @@
1241712417
/**
1241812418
* This method is like `_.merge` except that it accepts `customizer` which
1241912419
* is invoked to produce the merged values of the destination and source
12420-
* properties. If `customizer` returns `undefined` merging is handled by the
12420+
* properties. If `customizer` returns `undefined`, merging is handled by the
1242112421
* method instead. The `customizer` is invoked with seven arguments:
1242212422
* (objValue, srcValue, key, object, source, stack).
1242312423
*
@@ -12609,7 +12609,7 @@
1260912609
}
1261012610

1261112611
/**
12612-
* Sets the value at `path` of `object`. If a portion of `path` doesn't exist
12612+
* Sets the value at `path` of `object`. If a portion of `path` doesn't exist,
1261312613
* it's created. Arrays are created for missing index properties while objects
1261412614
* are created for all other missing properties. Use `_.setWith` to customize
1261512615
* `path` creation.
@@ -12962,7 +12962,7 @@
1296212962

1296312963
/**
1296412964
* Checks if `n` is between `start` and up to but not including, `end`. If
12965-
* `end` is not specified it's set to `start` with `start` then set to `0`.
12965+
* `end` is not specified, it's set to `start` with `start` then set to `0`.
1296612966
* If `start` is greater than `end` the params are swapped to support
1296712967
* negative ranges.
1296812968
*
@@ -13619,7 +13619,7 @@
1361913619
* in "interpolate" delimiters, HTML-escape interpolated data properties in
1362013620
* "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data
1362113621
* properties may be accessed as free variables in the template. If a setting
13622-
* object is given it takes precedence over `_.templateSettings` values.
13622+
* object is given, it takes precedence over `_.templateSettings` values.
1362313623
*
1362413624
* **Note:** In the development build `_.template` utilizes
1362513625
* [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
@@ -14414,8 +14414,8 @@
1441414414

1441514415
/**
1441614416
* Creates a function that invokes `func` with the arguments of the created
14417-
* function. If `func` is a property name the created function returns the
14418-
* property value for a given element. If `func` is an array or object the
14417+
* function. If `func` is a property name, the created function returns the
14418+
* property value for a given element. If `func` is an array or object, the
1441914419
* created function returns `true` for elements that contain the equivalent
1442014420
* source properties, otherwise it returns `false`.
1442114421
*
@@ -14575,7 +14575,7 @@
1457514575

1457614576
/**
1457714577
* Adds all own enumerable string keyed function properties of a source
14578-
* object to the destination object. If `object` is a function then methods
14578+
* object to the destination object. If `object` is a function, then methods
1457914579
* are added to its prototype as well.
1458014580
*
1458114581
* **Note:** Use `_.runInContext` to create a pristine `lodash` function to
@@ -14832,7 +14832,7 @@
1483214832
/**
1483314833
* Creates an array of numbers (positive and/or negative) progressing from
1483414834
* `start` up to, but not including, `end`. A step of `-1` is used if a negative
14835-
* `start` is specified without an `end` or `step`. If `end` is not specified
14835+
* `start` is specified without an `end` or `step`. If `end` is not specified,
1483614836
* it's set to `start` with `start` then set to `0`.
1483714837
*
1483814838
* **Note:** JavaScript follows the IEEE-754 standard for resolving
@@ -14979,7 +14979,7 @@
1497914979
}
1498014980

1498114981
/**
14982-
* Generates a unique ID. If `prefix` is given the ID is appended to it.
14982+
* Generates a unique ID. If `prefix` is given, the ID is appended to it.
1498314983
*
1498414984
* @static
1498514985
* @since 0.1.0
@@ -15087,7 +15087,7 @@
1508715087
var floor = createRound('floor');
1508815088

1508915089
/**
15090-
* Computes the maximum value of `array`. If `array` is empty or falsey
15090+
* Computes the maximum value of `array`. If `array` is empty or falsey,
1509115091
* `undefined` is returned.
1509215092
*
1509315093
* @static
@@ -15187,7 +15187,7 @@
1518715187
}
1518815188

1518915189
/**
15190-
* Computes the minimum value of `array`. If `array` is empty or falsey
15190+
* Computes the minimum value of `array`. If `array` is empty or falsey,
1519115191
* `undefined` is returned.
1519215192
*
1519315193
* @static

0 commit comments

Comments
 (0)