move

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1002 B
Move an item, at index `from`, to index `to`, in a list of elements.
1 contributor
Install move as a package?
Copied
npm i @bit/justin-capalbo.ramda.move
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
move (
from:Number,
to:Number,
list:Array
) : Array

Move an item, at index from, to index to, in a list of elements. A new list will be created containing the new elements order.

Example
R.move(0, 2, ['a', 'b', 'c', 'd', 'e', 'f']); //=> ['b', 'c', 'a', 'd', 'e', 'f']
     R.move(-1, 0, ['a', 'b', 'c', 'd', 'e', 'f']); //=> ['f', 'a', 'b', 'c', 'd', 'e'] list rotation
Arguments
from: Number

The source index

to: Number

The destination index

list: Array

The list which will serve to realise the move

Returns
Array

The new list reordered

Help and resources