refactor: extract utility to merge two arrays

This commit is contained in:
Carlos Valente
2025-05-16 20:03:41 +02:00
committed by Carlos Valente
parent df55b0bf8d
commit 918140086c
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ export { customFieldLabelToKey, customKeyFromLabel } from './src/customField-uti
export { deepmerge } from './src/externals/deepmerge.js';
// array utils
export { deleteAtIndex, insertAtIndex, reorderArray } from './src/common/arrayUtils.js';
export { deleteAtIndex, insertAtIndex, mergeAtIndex, reorderArray } from './src/common/arrayUtils.js';
// object utils
export { getPropertyFromPath, isObjectEmpty } from './src/common/objectUtils.js';