lodash_extended.ts 230 B

123456789101112
  1. // eslint-disable-next-line lodash/import-scope
  2. import _ from 'lodash';
  3. /*
  4. Mixins :)
  5. */
  6. _.mixin({
  7. move: (array, fromIndex, toIndex) => {
  8. array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]);
  9. return array;
  10. },
  11. });