Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 873 Bytes

File metadata and controls

43 lines (29 loc) · 873 Bytes

popN(object, path, n) ⇒ Object | Array.<any>

one of additional functions to work with array items

Returns: Object | Array.<any> - updated object Params

  • object Object | Array.<any> - object to update
  • path string | Array.<string> - path to be updated
  • n number - number of elements to remove

Description

import { popN } from 'immutable-object-update';

const state = {
    a: {
        b: [ 1, 2, 3 ]
    }
};

const updated = popN(state, [ 'a', 'b' ], 2);

// or

const updated = popN(state, 'a.b', 2);

As a result we will receive new object with structure below:

{
    a: {
        b: [ 1 ]
    }
}

Please note: popN() function won't return removed items