mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
|
import _ from 'lodash';
|
||
|
|
||
|
/*
|
||
|
Mixins :)
|
||
|
*/
|
||
|
_.mixin({
|
||
|
move: function(array, fromIndex, toIndex) {
|
||
|
array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]);
|
||
|
return array;
|
||
|
},
|
||
|
});
|