|
66 | 66 |
|
67 | 67 | /**
|
68 | 68 | * @typedef {Object} config
|
69 |
| - * |
70 |
| - * @static |
71 | 69 | *
|
72 |
| - * @property {boolean} [checkArguments=true] Determines whether "foreach" should check the number of arguments in the callback function. |
73 |
| - * If it is enabled and: |
74 |
| - * - when the callback function has one argument, "foreach" will |
75 |
| - * pass one argument to the callback function, which will contain |
76 |
| - * the actual **value** of the container object. |
| 70 | + * @static |
| 71 | + * @memberOf js/partial/foreach |
77 | 72 | *
|
78 |
| - * - when the callback function has two arguments, "foreach" will |
79 |
| - * pass two arguments to the callback function, the first will be |
80 |
| - * the actual **key**, the second will be the |
81 |
| - * actual **value** of the container object. |
| 73 | + * @property {boolean} [checkArguments=true] |
| 74 | + * Determines whether "foreach" should check the number of arguments in the callback function. |
| 75 | + * If it is enabled and: |
| 76 | + * - when the callback function has one argument, "foreach" will |
| 77 | + * pass one argument to the callback function, which will contain |
| 78 | + * the actual **value** of the container object. |
82 | 79 | *
|
83 |
| - * If it is disabled, always two arguments will be passed to the |
84 |
| - * callback function, the first will be the actual **key**, |
85 |
| - * the second will be the actual **value** of the container object. |
| 80 | + * - when the callback function has two arguments, "foreach" will |
| 81 | + * pass two arguments to the callback function, the first will be |
| 82 | + * the actual **key**, the second will be the |
| 83 | + * actual **value** of the container object. |
86 | 84 | *
|
87 |
| - * @memberOf js/partial/foreach |
| 85 | + * If it is disabled, always two arguments will be passed to the |
| 86 | + * callback function, the first will be the actual **key**, |
| 87 | + * the second will be the actual **value** of the container object. |
88 | 88 | */
|
89 | 89 | config = {
|
90 | 90 | checkArguments : true,
|
|
0 commit comments