Lines Matching refs:thru

1630      * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`,
5137 prereq = LodashWrapper.prototype.thru;
5166 : wrapper.thru(func);
5627 * objects into destination objects that are passed thru.
8837 * The purpose of this method is to "pass thru" values replacing intermediate
8852 * .thru(function(value) {
8858 function thru(value, interceptor) {
8886 return this.thru(interceptor);
8890 'func': thru,
8894 return new LodashWrapper(value, this.__chain__).thru(function(array) {
9090 'func': thru,
9096 return this.thru(reverse);
9121 * each element of `collection` thru `iteratee`. The corresponding value of
9305 * thru `iteratee` and flattening the mapped results. The iteratee is invoked
9440 * each element of `collection` thru `iteratee`. The order of grouped values
9548 * each element of `collection` thru `iteratee`. The corresponding value of
9579 * Creates an array of values by running each element in `collection` thru
9710 * each element in `collection` thru `iteratee`, where each successive
9970 * running each element in a collection thru each iteratee. This method
13289 * from the results of running each element of `object` thru `iteratee`. The
13408 * string keyed property of `object` thru `iteratee`. The iteratee is invoked
13438 * by running each own enumerable string keyed property of `object` thru
13829 * enumerable string keyed properties thru `iteratee`, with each invocation
15859 * @returns {Function} Returns the new pass-thru function.
16740 lodash.thru = thru;
17110 result.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined });
17116 result = this.thru(interceptor);
17124 chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru',