From c115fa99240a55e32e1fa39f037056df429be741 Mon Sep 17 00:00:00 2001 From: TEHEK Firefox Date: Fri, 23 Sep 2011 18:36:09 +0000 Subject: fix($limitTo): properly handle excessive limits `angular.Array.limitTo`'s result should not exceed original input array size Closes #571 --- src/apis.js | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src/apis.js') diff --git a/src/apis.js b/src/apis.js index 9f081012..7aa9f0c2 100644 --- a/src/apis.js +++ b/src/apis.js @@ -697,8 +697,9 @@ var angularArray = { * @param {string|Number} limit The length of the returned array. If the `limit` number is * positive, `limit` number of items from the beginning of the source array are copied. * If the number is negative, `limit` number of items from the end of the source array are - * copied. - * @returns {Array} A new sub-array of length `limit`. + * copied. The `limit` will be trimmed if it exceeds `array.length` + * @returns {Array} A new sub-array of length `limit` or less if input array had less than `limit` + * elements. * * @example @@ -718,6 +719,11 @@ var angularArray = { input('limit').enter(-3); expect(binding('numbers.$limitTo(limit) | json')).toEqual('[7,8,9]'); }); + + it('should not exceed the maximum size of input array', function() { + input('limit').enter(100); + expect(binding('numbers.$limitTo(limit) | json')).toEqual('[1,2,3,4,5,6,7,8,9]'); + }); */ @@ -726,6 +732,16 @@ var angularArray = { var out = [], i, n; + // check that array is iterable + if (!array || !(array instanceof Array)) + return out; + + // if abs(limit) exceeds maximum length, trim it + if (limit > array.length) + limit = array.length; + else if (limit < -array.length) + limit = -array.length; + if (limit > 0) { i = 0; n = limit; -- cgit v1.2.3