Lines Matching refs:props

2101       var props = [-0, Object(-0), 0, Object(0)];
2103 var actual = lodashStable.map(props, function(key) {
3017 var props = [];
3023 props.push(lodashStable.capitalize(lodashStable.camelCase(key)));
3037 assert.deepEqual(actual, expected, props.join(', '));
6847 props = [];
6849 func(object, function(value, prop) { props.push(prop); });
6850 assert.deepEqual(props.sort(), ['0', '1', 'length']);
7902 props = [-0, Object(-0), 0, Object(0)],
7903 expected = lodashStable.map(props, stubTrue);
7905 var actual = lodashStable.map(props, function(key) {
8757 props = [-0, Object(-0), 0, Object(0)];
8759 var actual = lodashStable.map(props, function(key) {
11851 var props = lodashStable.invokeMap(typedArrays, 'toLowerCase');
11853 var expected = lodashStable.map(props, function(key) {
11857 var actual = lodashStable.map(props, function(key) {
14178 props = [-0, Object(-0), 0, Object(0)],
14180 expected = lodashStable.map(props, lodashStable.constant([true, false]));
14182 var actual = lodashStable.map(props, function(key, index) {
14742 var props = [
14754 var actual = lodashStable.map(props, function(value) {
14758 assert.deepEqual(actual, props);
15118 var props = ['0', 'buffer', 'a'],
15123 var key = props[index],
16572 resolve = function(object, props) { argument
16573 props = lodashStable.castArray(props);
16575 return lodashStable.some(props, function(key) {
16602 props = [-0, Object(-0), 0, Object(0)],
16605 var actual = lodashStable.map(props, function(key) {
17849 resolve = function(object, props) { argument
17850 props = lodashStable.castArray(props);
17852 return lodashStable.some(props, function(key) {
17880 props = [-0, Object(-0), 0, Object(0)],
17883 var actual = lodashStable.map(props, function(key) {
17989 props = [-0, Object(-0), 0, Object(0)];
17991 var actual = lodashStable.map(props, function(key) {
18134 props = [-0, Object(-0), 0, Object(0)];
18136 var actual = lodashStable.map(props, function(key) {
18433 var props = [-0, Object(-0), 0, Object(0)];
18435 var actual = lodashStable.map(props, function(key) {
19378 props = [-0, Object(-0), 0, Object(0)];
19380 var actual = lodashStable.map(props, function(key) {
20117 var props = [-0, Object(-0), 0, Object(0)],
20118 expected = lodashStable.map(props, lodashStable.constant(value));
20120 var actual = lodashStable.map(props, function(key) {
20862 lodashStable.each(['a', 0, [0]], function(props, index) { argument
20870 return lodashStable.reduce([props], func, objects);
25020 var props = [-0, Object(-0), 0, Object(0)],
25021 expected = lodashStable.map(props, lodashStable.constant([true, false]));
25023 var actual = lodashStable.map(props, function(key) {
25734 props = lodashStable.map(values, function(value) { return 'key' + value; }),
25735 actual = _(props)[methodName](values).map(square).filter(isEven).take().value();
25737 assert.deepEqual(actual, _.take(_.filter(_.map(func(props, values), square), isEven)));