bogini / move

Move lodash mixin. Move an item in array.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

_.move LoDash mixin

Move an item in an array

npm install lodash-move

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: 'Wilma', name: 'Barney', name: 'Betty'}]

About

Move lodash mixin. Move an item in array.

License:MIT License


Languages

Language:JavaScript 100.0%