redux-dry
v1.0.0
Published
DRY up your common use cases in Redux.
Downloads
5
Readme
_.move LoDash mixin
Move an item in an array
LoDash issue is here. Give it a 👍 if you want to see it added to Lodash.
Example
move(['a', 'b', 'c'], 2, 0)
// -> ['c', 'a', 'b']
move([{name: 'Fred'}, {name: 'Barney'}, {name: 'Wilma'}, {name: 'Betty'}], 2, 1)
// -> [{name: 'Fred', name: 'Wilman', name: 'Barney', name: 'Betty'}]