mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
import _ from 'lodash';
|
|
|
|
/*
|
|
Mixins :)
|
|
*/
|
|
_.mixin({
|
|
move: (array, fromIndex, toIndex) => {
|
|
array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]);
|
|
return array;
|
|
},
|
|
});
|