pushAll(path, values) ⇒ object
Adds list elements to the end of array
Returns: object - action object
Params
- path 
number|string|Array.<(string|number)>- path to be updated (array of items or dot-separated string can be provided) - values 
Array.<any>- values to be added 
Description
This action is similar to push() but consumes array of items as 2nd argument:
import { ACTIONS, reducer } from 'general-reducer';
const state = {
    a: {
        b: [ 1 ]
    }
};
const updated = reducer(state, ACTIONS.pushAll('a.b', [ 2, 3 ]));
// or
const updated = reducer(state, ACTIONS.pushAll([ 'a', 'b' ], [ 2, 3 ]));
As a result we will receive new object with structure below:
{
    a: {
        b: [ 1, 2, 3 ]
    }
}