mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 01:47:48 +00:00
Minor doc tweaks to _.partition and _.zip. [ci skip]
This commit is contained in:
16
dist/lodash.compat.js
vendored
16
dist/lodash.compat.js
vendored
@@ -3123,10 +3123,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains the
|
* Creates an array of grouped elements, the first of which contains the first
|
||||||
* first elements of the given arrays, the second of which contains the second
|
* elements of the given arrays, the second of which contains the second elements
|
||||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||||
* corresponding unzipped value will be returned.
|
* unzipped value will be returned.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -4085,10 +4085,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains elements
|
* Creates an array of elements split into two groups, the first of which
|
||||||
* the callback returns truey for, the second of which contains elements the
|
* contains elements the callback returns truey for, while the second of which
|
||||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
* contains elements the callback returns falsey for. The callback is bound
|
||||||
* with three arguments; (value, index|key, collection).
|
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||||
*
|
*
|
||||||
* If a property name is provided for `callback` the created "_.pluck" style
|
* If a property name is provided for `callback` the created "_.pluck" style
|
||||||
* callback will return the property value of the given element.
|
* callback will return the property value of the given element.
|
||||||
|
|||||||
16
dist/lodash.js
vendored
16
dist/lodash.js
vendored
@@ -2860,10 +2860,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains the
|
* Creates an array of grouped elements, the first of which contains the first
|
||||||
* first elements of the given arrays, the second of which contains the second
|
* elements of the given arrays, the second of which contains the second elements
|
||||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||||
* corresponding unzipped value will be returned.
|
* unzipped value will be returned.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -3823,10 +3823,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains elements
|
* Creates an array of elements split into two groups, the first of which
|
||||||
* the callback returns truey for, the second of which contains elements the
|
* contains elements the callback returns truey for, while the second of which
|
||||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
* contains elements the callback returns falsey for. The callback is bound
|
||||||
* with three arguments; (value, index|key, collection).
|
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||||
*
|
*
|
||||||
* If a property name is provided for `callback` the created "_.pluck" style
|
* If a property name is provided for `callback` the created "_.pluck" style
|
||||||
* callback will return the property value of the given element.
|
* callback will return the property value of the given element.
|
||||||
|
|||||||
8
dist/lodash.underscore.js
vendored
8
dist/lodash.underscore.js
vendored
@@ -1858,10 +1858,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains the
|
* Creates an array of grouped elements, the first of which contains the first
|
||||||
* first elements of the given arrays, the second of which contains the second
|
* elements of the given arrays, the second of which contains the second elements
|
||||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||||
* corresponding unzipped value will be returned.
|
* unzipped value will be returned.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
|
|||||||
394
doc/README.md
394
doc/README.md
File diff suppressed because it is too large
Load Diff
16
lodash.js
16
lodash.js
@@ -3138,10 +3138,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains the
|
* Creates an array of grouped elements, the first of which contains the first
|
||||||
* first elements of the given arrays, the second of which contains the second
|
* elements of the given arrays, the second of which contains the second elements
|
||||||
* elements of the given arrays, and so on. If a zipped value is provided its
|
* of the given arrays, and so on. If a zipped value is provided its corresponding
|
||||||
* corresponding unzipped value will be returned.
|
* unzipped value will be returned.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -4101,10 +4101,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an array of grouped elements, the first of which contains elements
|
* Creates an array of elements split into two groups, the first of which
|
||||||
* the callback returns truey for, the second of which contains elements the
|
* contains elements the callback returns truey for, while the second of which
|
||||||
* callback returns falsey for. The callback is bound to `thisArg` and invoked
|
* contains elements the callback returns falsey for. The callback is bound
|
||||||
* with three arguments; (value, index|key, collection).
|
* to `thisArg` and invoked with three arguments; (value, index|key, collection).
|
||||||
*
|
*
|
||||||
* If a property name is provided for `callback` the created "_.pluck" style
|
* If a property name is provided for `callback` the created "_.pluck" style
|
||||||
* callback will return the property value of the given element.
|
* callback will return the property value of the given element.
|
||||||
|
|||||||
Reference in New Issue
Block a user