Lines Matching defs:fromIndex

6088       QUnit.test('`_.' + methodName + '` should work with ' + key + ' and a positive `fromIndex`', function(assert) {
6104 QUnit.test('`_.' + methodName + '` should work with ' + key + ' and a `fromIndex` >= `length`', function(assert) {
6114 var actual = lodashStable.map(indexes, function(fromIndex) {
6116 func(collection, resolve(1), fromIndex),
6117 func(collection, resolve(undefined), fromIndex),
6118 func(collection, resolve(''), fromIndex)
6125 QUnit.test('`_.' + methodName + '` should work with ' + key + ' and treat falsey `fromIndex` values as `0`', function(assert) {
6130 var actual = lodashStable.map(falsey, function(fromIndex) {
6131 return func(collection, resolve(values[0]), fromIndex);
6137 QUnit.test('`_.' + methodName + '` should work with ' + key + ' and coerce `fromIndex` to an integer', function(assert) {
6155 QUnit.test('`_.' + methodName + '` should work with ' + key + ' and a negative `fromIndex`', function(assert) {
6171 QUnit.test('`_.' + methodName + '` should work with ' + key + ' and a negative `fromIndex` <= `-length`', function(assert) {
6177 var actual = lodashStable.map(indexes, function(fromIndex) {
6178 return func(collection, resolve(values[0]), fromIndex);
6201 QUnit.test('`_.' + methodName + '` should work with a positive `fromIndex`', function(assert) {
6207 QUnit.test('`_.' + methodName + '` should work with a `fromIndex` >= `length`', function(assert) {
6213 var actual = lodashStable.map(values, function(fromIndex) {
6215 func(array, resolve(undefined), fromIndex),
6216 func(array, resolve(1), fromIndex),
6217 func(array, resolve(''), fromIndex)
6224 QUnit.test('`_.' + methodName + '` should work with a negative `fromIndex`', function(assert) {
6230 QUnit.test('`_.' + methodName + '` should work with a negative `fromIndex` <= `-length`', function(assert) {
6236 var actual = lodashStable.map(values, function(fromIndex) {
6237 return func(array, resolve(1), fromIndex);
6243 QUnit.test('`_.' + methodName + '` should treat falsey `fromIndex` values as `0`', function(assert) {
6248 var actual = lodashStable.map(falsey, function(fromIndex) {
6249 return func(array, resolve(1), fromIndex);
6255 QUnit.test('`_.' + methodName + '` should coerce `fromIndex` to an integer', function(assert) {
6276 QUnit.test('should work with ' + key + ' and a positive `fromIndex`', function(assert) {
6292 QUnit.test('should work with ' + key + ' and a `fromIndex` >= `length`', function(assert) {
6299 var actual = lodashStable.map(indexes, function(fromIndex) {
6301 _.findLast(collection, resolve(1), fromIndex),
6302 _.findLast(collection, resolve(undefined), fromIndex),
6303 _.findLast(collection, resolve(''), fromIndex)
6310 QUnit.test('should work with ' + key + ' and treat falsey `fromIndex` values correctly', function(assert) {
6317 var actual = lodashStable.map(falsey, function(fromIndex) {
6318 return _.findLast(collection, resolve(values[3]), fromIndex);
6324 QUnit.test('should work with ' + key + ' and coerce `fromIndex` to an integer', function(assert) {
6342 QUnit.test('should work with ' + key + ' and a negative `fromIndex`', function(assert) {
6358 QUnit.test('should work with ' + key + ' and a negative `fromIndex` <= `-length`', function(assert) {
6364 var actual = lodashStable.map(indexes, function(fromIndex) {
6365 return _.findLast(collection, resolve(values[0]), fromIndex);
8249 QUnit.test('should work with a string and a `fromIndex` >= `length`', function(assert) {
8260 var actual = lodashStable.map(indexes, function(fromIndex) {
8262 _.includes(string, 1, fromIndex),
8263 _.includes(string, undefined, fromIndex),
8264 _.includes(string, '', fromIndex)
13324 QUnit.test('`_.' + methodName + '` should work with a positive `fromIndex`', function(assert) {
13330 QUnit.test('`_.' + methodName + '` should work with a `fromIndex` >= `length`', function(assert) {
13336 var actual = lodashStable.map(values, function(fromIndex) {
13338 func(array, resolve(undefined), fromIndex),
13339 func(array, resolve(1), fromIndex),
13340 func(array, resolve(''), fromIndex)
13347 QUnit.test('`_.' + methodName + '` should work with a negative `fromIndex`', function(assert) {
13353 QUnit.test('`_.' + methodName + '` should work with a negative `fromIndex` <= `-length`', function(assert) {
13359 var actual = lodashStable.map(values, function(fromIndex) {
13360 return func(array, resolve(1), fromIndex);
13366 QUnit.test('`_.' + methodName + '` should treat falsey `fromIndex` values correctly', function(assert) {
13373 var actual = lodashStable.map(falsey, function(fromIndex) {
13374 return func(array, resolve(3), fromIndex);
13380 QUnit.test('`_.' + methodName + '` should coerce `fromIndex` to an integer', function(assert) {