From 5075a34165a0d6859a7d7d7b602dfdbf266a74bf Mon Sep 17 00:00:00 2001 From: Ilya Mochalov Date: Tue, 18 Aug 2015 20:56:24 +0500 Subject: [PATCH] lodash: trim trailing whitespace characters --- lodash/lodash.d.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 9815f472b4..51a42c8da9 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -694,9 +694,9 @@ declare module _ { takeWhile( array: (Array|List), predicate?: ListIterator, - thisArg?: any + thisArg?: any ): T[]; - + /** * Takes the first items from an array or list based on a predicate * @param array The array or list of items on which the result set will be based @@ -706,7 +706,7 @@ declare module _ { array: (Array|List), pluckValue: string ): any[]; - + /** * Takes the first items from an array or list based on a predicate * @param array The array or list of items on which the result set will be based @@ -1502,7 +1502,7 @@ declare module _ { **/ union(...arrays: List[]): T[]; } - + interface LoDashArrayWrapper { /** * @see _.union @@ -2514,13 +2514,13 @@ declare module _ { /** * Iterates over elements of a collection, returning an array of all elements the * identity function returns truey for. - * + * * @param collection The collection to iterate over. * @return Returns a new array of elements that passed the callback check. **/ filter( collection: (Array|List)): T[]; - + /** * Iterates over elements of a collection, returning an array of all elements the * callback returns truey for. The callback is bound to thisArg and invoked with three @@ -2683,7 +2683,7 @@ declare module _ { * @see _.filter **/ filter(): LoDashArrayWrapper; - + /** * @see _.filter **/ @@ -5096,7 +5096,7 @@ declare module _ { sortBy( collection: List, whereValue: W): T[]; - + /** * Sorts by all the given arguments, using either ListIterator, pluckValue, or whereValue foramts * @param args The rules by which to sort @@ -5126,7 +5126,7 @@ declare module _ { * @param whereValue _.where style callback **/ sortBy(whereValue: W): LoDashArrayWrapper; - + /** * Sorts by all the given arguments, using either ListIterator, pluckValue, or whereValue foramts * @param args The rules by which to sort